-
Notifications
You must be signed in to change notification settings - Fork 46
/
Cargo.toml
39 lines (33 loc) · 985 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
37
38
39
[package]
name = "cargo-udeps"
version = "0.1.52"
authors = ["est31 <[email protected]>", "Ryo Yamashita <[email protected]>"]
description = "Find unused dependencies in Cargo.toml"
repository = "https://github.com/est31/cargo-udeps"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["cargo"]
categories = ["development-tools", "development-tools::cargo-plugins"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
vendored-openssl = ["cargo/vendored-openssl"]
vendored-libgit2 = ["cargo/vendored-libgit2"]
[dependencies]
nu-ansi-term = "0.50.0"
cargo = "0.83.0"
cargo-util = "0.2.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.0", features = ["derive"] }
anyhow = "1.0"
[dev-dependencies]
pretty_assertions = "1.0"
tempfile = "3.1"
[profile.dev]
debug = false
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = "symbols"