{"id":17306294,"url":"https://github.com/paolobarbolini/bzip2-rs","last_synced_at":"2025-04-05T07:03:16.479Z","repository":{"id":44960291,"uuid":"334433078","full_name":"paolobarbolini/bzip2-rs","owner":"paolobarbolini","description":"Pure Rust bzip2 decoder","archived":false,"fork":false,"pushed_at":"2024-12-28T07:16:05.000Z","size":370,"stargazers_count":46,"open_issues_count":11,"forks_count":6,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-29T06:05:03.622Z","etag":null,"topics":["bzip2","compression","hacktoberfest"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/paolobarbolini.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-01-30T14:32:59.000Z","updated_at":"2025-01-26T00:45:41.000Z","dependencies_parsed_at":"2024-12-28T08:19:04.600Z","dependency_job_id":"3a0d3f3b-2bde-4ce7-9867-e31040f49eb6","html_url":"https://github.com/paolobarbolini/bzip2-rs","commit_stats":{"total_commits":79,"total_committers":2,"mean_commits":39.5,"dds":0.05063291139240511,"last_synced_commit":"942cb4aa209195d4db32d34eb0a9bca8a35a2840"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paolobarbolini%2Fbzip2-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paolobarbolini%2Fbzip2-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paolobarbolini%2Fbzip2-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paolobarbolini%2Fbzip2-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/paolobarbolini","download_url":"https://codeload.github.com/paolobarbolini/bzip2-rs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247299831,"owners_count":20916190,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bzip2","compression","hacktoberfest"],"created_at":"2024-10-15T11:58:00.133Z","updated_at":"2025-04-05T07:03:16.461Z","avatar_url":"https://github.com/paolobarbolini.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bzip2-rs\n\n[![crates.io](https://img.shields.io/crates/v/bzip2-rs.svg)](https://crates.io/crates/bzip2-rs)\n[![Documentation](https://docs.rs/bzip2-rs/badge.svg)](https://docs.rs/bzip2-rs)\n[![dependency status](https://deps.rs/crate/bzip2-rs/0.1.2/status.svg)](https://deps.rs/crate/bzip2-rs/0.1.2)\n[![Rustc Version 1.63+](https://img.shields.io/badge/rustc-1.63+-lightgray.svg)](https://blog.rust-lang.org/2022/08/11/Rust-1.63.0.html)\n[![CI](https://github.com/paolobarbolini/bzip2-rs/workflows/CI/badge.svg)](https://github.com/paolobarbolini/bzip2-rs/actions?query=workflow%3ACI)\n\nPure Rust 100% safe bzip2 decompressor.\n\n## Features\n\n* `rayon`: enable using the [rayon] global threadpool for parallel decoding.\n           NOTE: this feature is not subject to a MSRV. At the time of writing the MSRV for rayon is 1.63\n\n* Default features: Rust \u003e= 1.63 is supported\n* `nightly`: require Rust Nightly, enable more optimizations\n\n## Usage\n\n```rust\nuse std::fs::File;\nuse std::io;\nuse bzip2_rs::DecoderReader;\n\nlet mut compressed_file = File::open(\"input.bz2\")?;\nlet mut decompressed_output = File::create(\"output\")?;\n\nlet mut reader = DecoderReader::new(compressed_file);\nio::copy(\u0026mut reader, \u0026mut decompressed_output)?;\n```\n\n## Upcoming features\n\n* bzip2 encoding support\n* no_std support (is anybody interested with this?)\n\n## License\n\nLicensed under either of\n * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)\n * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)\n\nat your option.\n\n### Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally submitted\nfor inclusion in the work by you shall be dual licensed as above, without any\nadditional terms or conditions.\n\n[rayon]: https://crates.io/crates/rayon\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaolobarbolini%2Fbzip2-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpaolobarbolini%2Fbzip2-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaolobarbolini%2Fbzip2-rs/lists"}