https://github.com/althonos/opticaldisc
Read optical media filesystems with Rust
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
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
Metadata Files
README.md
opticaldisc
Read optical media filesystems with Rust .
Dependencies
| Package | Description | Minimum | Latest | Source | License |
| --- | --- | --- | --- | --- | --- |
| nom | byte parser combinators | |
|
|
|
| memchr | safe interface to
memchr | |
|
|
|
| error-chain | convenient errors management |
|
|
|
|
| btoi | convert strings to ints |
|
|
|
|
| chrono | date and time management |
|
|
|
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
- Twitter: althonos
- Repositories: 91
- Profile: https://github.com/althonos
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
Top Committers
| Name | 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
- lazy_static ^1.0 development
- btoi ^0.3
- chrono ^0.4
- error-chain ^0.11
- memchr ^2.0
- nom ^4.0.0-beta3