zstd-rs/Cargo.toml

27 lines
665 B
TOML
Raw Normal View History

2016-02-21 10:01:51 +00:00
[package]
authors = ["Alexandre Bury <alexandre.bury@gmail.com>"]
2016-08-03 17:44:08 +00:00
description = "Binding for the zstd compression library."
documentation = "https://docs.rs/zstd"
keywords = ["zstd", "zstandard", "compression"]
categories = ["compression", "api-bindings"]
2016-02-21 10:01:51 +00:00
license = "MIT"
name = "zstd"
2016-08-18 21:20:53 +00:00
repository = "https://github.com/gyscos/zstd-rs"
2017-04-09 17:17:39 +00:00
version = "0.4.7"
2016-08-31 16:34:38 +00:00
exclude = ["assets"]
2016-02-21 10:01:51 +00:00
[badges]
travis-ci = { repository = "gyscos/zstd-rs" }
[dependencies]
2016-03-02 07:21:50 +00:00
libc = "0.2"
2017-03-24 20:06:32 +00:00
zstd-sys = { path="zstd-sys", version = "1.1.5-a", default-features = false }
[dev-dependencies]
2016-06-16 21:06:03 +00:00
clap = "2.6.0"
[features]
default = ["legacy"]
2017-03-24 19:14:28 +00:00
legacy = ["zstd-sys/legacy"]
bindgen = ["zstd-sys/bindgen"]