{"id":16724275,"url":"https://github.com/badboy/minilzo-rs","last_synced_at":"2025-07-24T16:41:14.901Z","repository":{"id":57638831,"uuid":"47031994","full_name":"badboy/minilzo-rs","owner":"badboy","description":"A wrapper for minilzo, a lightweight subset of the LZO library","archived":false,"fork":false,"pushed_at":"2017-05-09T13:41:52.000Z","size":5222,"stargazers_count":4,"open_issues_count":1,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-10T06:22:41.238Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://badboy.github.io/minilzo-rs/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/badboy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-11-28T17:02:28.000Z","updated_at":"2024-03-04T16:20:44.000Z","dependencies_parsed_at":"2022-08-30T09:40:31.916Z","dependency_job_id":null,"html_url":"https://github.com/badboy/minilzo-rs","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badboy%2Fminilzo-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badboy%2Fminilzo-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badboy%2Fminilzo-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badboy%2Fminilzo-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/badboy","download_url":"https://codeload.github.com/badboy/minilzo-rs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248199079,"owners_count":21063641,"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":[],"created_at":"2024-10-12T22:44:35.639Z","updated_at":"2025-04-10T10:21:45.316Z","avatar_url":"https://github.com/badboy.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# minilzo-rs - A wrapper around minilzo, the lightweight subset of the LZO library\n\n[![Build Status](https://travis-ci.org/badboy/minilzo-rs.svg?branch=master)](https://travis-ci.org/badboy/minilzo-rs)\n[![crates.io](http://meritbadge.herokuapp.com/minilzo)](https://crates.io/crates/minilzo)\n\nLZO is a compression library with focus on decompression speed.\noriginally implemented by Markus F.X.J. Oberhumer.\nminilzo is a lightweight subset of the full LZO library.\n\nIt is available [online as a C library](http://www.oberhumer.com/opensource/lzo/#minilzo).\n\nThis rust library is a wrapper around the minilzo library\nand is fully compatible with LZO/minilzo compressed data.\n\n## Build\n\n```\ncargo build --release\n```\n\n## Usage\n\n```rust\nuse minilzo;\n\nfn main() {\n    let data = b\"foobar\";\n\n    let compressed = minilzo::compress(\u0026data[..]).unwrap();\n\n    let decompressed = minilzo::decompress(\u0026compressed, data.len()).unwrap();\n}\n```\n\n## Tests\n\nRun tests with:\n\n```\ncargo test\n```\n\nRun benchmarks with:\n\n```\ncargo bench\n```\n\n## License\n\nThe `minilzo-rs` wrapper library is licensed under the terms of the [MIT License](LICENSE).  \nLZO itself is licensed under the terms of the [GNU General Public License](http://www.oberhumer.com/opensource/gpl.html) (GPL v2+).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbadboy%2Fminilzo-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbadboy%2Fminilzo-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbadboy%2Fminilzo-rs/lists"}