-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (28 loc) · 943 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
[package]
name = "poetry-udeps"
version = "0.2.7"
edition = "2021"
authors = ["Luke Hsiao <[email protected]>"]
description = "Find unused dependencies in pyproject.toml"
repository = "https://github.com/lukehsiao/poetry-udeps"
homepage = "https://github.com/lukehsiao/poetry-udeps"
license = "BlueOak-1.0.0"
keywords = ["poetry", "dependencies"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.94"
clap = { version = "4.5.23", features = ["wrap_help", "derive", "suggestions"] }
clap-verbosity-flag = "3.0.1"
flume = "0.11.1"
ignore = "0.4.23"
log = "0.4.22"
nom = "7.1.3"
phf = { version = "0.11.2", features = ["macros"] }
toml = "0.8.19"
tracing = "0.1.41"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }
xshell = "0.2.7"
[dev-dependencies]
pretty_assertions = "1.4.1"