-
Notifications
You must be signed in to change notification settings - Fork 51
/
Cargo.toml
36 lines (31 loc) · 930 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
34
35
36
[package]
name = "xz2"
version = "0.1.7"
authors = ["Alex Crichton <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["lzma", "xz", "encoding"]
repository = "https://github.com/alexcrichton/xz2-rs"
homepage = "https://github.com/alexcrichton/xz2-rs"
documentation = "https://docs.rs/xz2"
description = """
Rust bindings to liblzma providing Read/Write streams as well as low-level
in-memory encoding/decoding.
"""
categories = ["compression", "api-bindings"]
edition = "2018"
[workspace]
members = ["systest"]
[dependencies]
lzma-sys = { path = "lzma-sys", version = "0.1.18" }
tokio-io = { version = "0.1.12", optional = true }
futures = { version = "0.1.26", optional = true }
[dev-dependencies]
rand = "0.8.0"
quickcheck = "1.0.1"
tokio-core = "0.1.17"
[features]
tokio = ["tokio-io", "futures"]
static = ["lzma-sys/static"]
[package.metadata.docs.rs]
features = ["tokio-io", "futures"]