xz
Version, currently 0.1.67 versions
github.com/naqvis/xz.cr
Crystal bindings to the XZ (lzma) compression library.
15 stars
0 dependents
License: MIT
Installation
# Add this to your shard.yml
dependencies:
xz:
github: naqvis/xz.cr
version: ~> 0.1.6Then run:
shards installshard.yml
- Crystal
>= 0.36.0, < 2.0.0- License
- MIT
- Author
- Ali Naqvi <syed.alinaqvi@gmail.com>
Dependencies
This version declares no dependencies.
README
# Crystal XZ
Crystal bindings to the XZ (lzma) compression library.
## Installation
1. Add the dependency to your `shard.yml`:
```yaml
dependencies:
xz:
github: naqvis/xz.cr
```
2. Run `shards install`
## Usage
```crystal
require "xz"
```
`XZ` shard provides both `Compress::XZ::Reader` and `Compress::XZ::Writer`.
## Example: decompress an xz file
#
```crystal
require "xz"
string = File.open("file.xz") do |file|
Compress::XZ::Reader.open(file) do |xz|
xz.gets_to_end
end
end
pp string
```
## Example: compress to xz compression format
#
```crystal
require "xz"
File.write("file.txt", "abcd")
File.open("./file.txt", "r") do |input_file|
File.open("./file.xz", "w") do |output_file|
Compress::XZ::Writer.open(output_file) do |xz|
IO.copy(input_file, xz)
end
end
end
```
## Contributing
1. Fork it (<https://github.com/naqvis/xz.cr/fork>)
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request
## Contributors
- [Ali Naqvi](https://github.com/naqvis) - creator and maintainer
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.1.6- Tagged
- Mar 2, 2025
- Commit
80611dc0c235- Crystal
>= 0.36.0, < 2.0.0- Indexed
- yes
Dependents
No indexed shard depends on this one yet.
Repository
github.com/naqvis/xz.cr
Metadata
- Created
- Aug 12, 2026
- Updated
- Aug 13, 2026
- Synced
- Aug 13, 2026
- Versions
- 7