forked from gyscos/zstd-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 934 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
authors = ["Alexandre Bury <[email protected]>"]
description = "Binding for the zstd compression library."
documentation = "https://docs.rs/zstd"
keywords = ["zstd", "zstandard", "compression"]
categories = ["compression", "api-bindings"]
license = "MIT"
name = "zstd"
repository = "https://github.com/gyscos/zstd-rs"
version = "0.4.17+zstd.1.3.3"
exclude = ["assets/**"]
readme = "Readme.md"
[badges]
travis-ci = { repository = "gyscos/zstd-rs" }
[dependencies]
libc = "0.2"
zstd-safe = { path="zstd-safe", version = "1.4.2", default-features = false }
tokio-io = { version = "0.1", optional = true }
futures = { version = "0.1", optional = true }
[dev-dependencies]
clap = "2.6.0"
partial-io = "^0.2.1"
quickcheck = "0.4"
humansize = "1.0"
[features]
default = ["legacy"]
legacy = ["zstd-safe/legacy"]
bindgen = ["zstd-safe/bindgen"]
tokio = ["tokio-io", "futures", "partial-io/quickcheck", "partial-io/tokio"]