29 lines
646 B
TOML
29 lines
646 B
TOML
[package]
|
|
name = "archives"
|
|
publish = false
|
|
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
camino = "1.1.1"
|
|
flate2 = "1.0.25"
|
|
sha2 = { version = "0.10.6" }
|
|
tar = "0.4.38"
|
|
tokio = { version = "1.22.0", features = ["macros", "rt-multi-thread"] }
|
|
workspace-hack = { version = "0.1", path = "../../tools/workspace-hack" }
|
|
xz2 = "0.1.7"
|
|
zip = "0.6.3"
|
|
zstd = "0.12.0"
|
|
|
|
[features]
|
|
rustls = ["reqwest/rustls-tls", "reqwest/rustls-tls-native-roots"]
|
|
native-tls = ["reqwest/native-tls"]
|
|
|
|
[dependencies.reqwest]
|
|
version = "=0.11.3"
|
|
default-features = false
|