-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (33 loc) · 1.15 KB
/
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]
authors = [ "museun <[email protected]>" ]
categories = [ "development-tools::cargo-plugins", "development-tools" ]
description = "display features, versions and dependencies of crates"
documentation = "https://docs.rs/cargo-whatfeatures/latest/cargo-whatfeatures/"
edition = "2021"
keywords = [ "features", "dependencies", "crates", "cargo", "cargo-subcommand" ]
license = "MIT OR Apache-2.0"
name = "cargo-whatfeatures"
readme = "README.md"
repository = "https://github.com/museun/cargo-whatfeatures"
version = "0.9.13"
[[bin]]
name = "cargo-whatfeatures"
path = "src/bin/whatfeatures/main.rs"
[features]
default = [ "native-tls" ]
native-tls = [ "attohttpc/tls" ]
rustls = [ "attohttpc/tls-rustls" ]
[dependencies]
anyhow = "1.0.80"
attohttpc = { version = "0.27.0", default-features = false, features = [ "json", "compress" ] }
cargo_metadata = "0.18.1"
crate_version_parse = "0.2.0"
directories = "5.0.1"
flate2 = "1.0.28"
home = "0.5.9"
serde = { version = "1.0.197", features = [ "derive" ] }
tar = "0.4.40"
yansi = "0.5.1"
time = { version = "0.3.36", features = [ "macros", "formatting", "parsing", "serde" ] }
pico-args = "0.5.0"
serde_json = "1.0.114"