https://github.com/althonos/opticaldisc

Read optical media filesystems with Rust

https://github.com/althonos/opticaldisc

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (5.0%) to scientific vocabulary

Keywords

iso-image iso9660 parser rust-crate
Last synced: 5 months ago · JSON representation

Repository

Read optical media filesystems with Rust

Basic Info
  • Host: GitHub
  • Owner: althonos
  • License: mit
  • Language: Rust
  • Default Branch: master
  • Size: 247 KB
Statistics
  • Stars: 4
  • Watchers: 2
  • Forks: 1
  • Open Issues: 0
  • Releases: 0
Topics
iso-image iso9660 parser rust-crate
Created almost 8 years ago · Last pushed almost 8 years ago
Metadata Files
Readme Changelog License

README.md

opticaldisc

Read optical media filesystems with Rust .

TravisCI Codecov License Source Crate Documentation CargoMake Changelog SayThanks

Dependencies

| Package | Description | Minimum | Latest | Source | License | | --- | --- | --- | --- | --- | --- | | nom | byte parser combinators | 4.0.0 | latest | GitHub | MIT | | memchr | safe interface to memchr | 2.0.0 | latest | GitHub | MIT | | error-chain | convenient errors management | 0.11.0 | latest | GitHub | MIT/Apache 2.0 | | btoi | convert strings to ints | 0.3.0 | latest | GitHub | MIT/Apache 2.0 | | chrono | date and time management | 0.4.0 | latest | GitHub | MIT/Apache 2.0

Quickstart

Add this crate to your Cargo.toml manifest:

toml [dependencies] opticaldisc = "^0.1.0"

Usage

Open an ISO-9660 filesystem

Open an ISO filesystem from anything that's both Read and Seek: ```rust extern crate opticaldisc;

let file: std::fs::File = ...; let iso = opticaldisc::iso::IsoFs::new(file) ```

It's also possible to read a buffer containing binary data (using std::io::Cursor to emulate a file). ```rust extern crate opticaldisc;

let data = includebytes!("..."); let iso = opticaldisc::iso::IsoFs::frombuffer(&data[..]); ```

Owner

  • Name: Martin Larralde
  • Login: althonos
  • Kind: user
  • Location: Heidelberg, Germany
  • Company: EMBL / LUMC, @zellerlab

PhD candidate in Bioinformatics, passionate about programming, SIMD-enthusiast, Pythonista, Rustacean. I write poems, and sometimes they are executable.

GitHub Events

Total
Last Year

Committers

Last synced: over 1 year ago

All Time
  • Total Commits: 40
  • Total Committers: 1
  • Avg Commits per committer: 40.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Martin Larralde m****e@e****r 40
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 10 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Dependencies

Cargo.toml cargo
  • lazy_static ^1.0 development
  • btoi ^0.3
  • chrono ^0.4
  • error-chain ^0.11
  • memchr ^2.0
  • nom ^4.0.0-beta3