-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
78 lines (73 loc) · 1.94 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[workspace]
members = ["lang_server"]
exclude = ["data/packages/", "data/test-packages/"]
[package]
name = "cargo-scan"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Scan and analyze Cargo dependencies"
repository = "https://github.com/PLSysSec/cargo-scan"
readme = "README.md"
default-run = "audit"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev.package."*"]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
incremental = false
codegen-units = 16
[dependencies]
anyhow.workspace = true
assert_cmd = "2.0.12"
cargo = "0.80.0"
cargo_toml = "0.20.3"
cargo-lock = { version = "9.0.0", features = ["dependency-tree"] }
clap = { version = "4.4.8", features = ["derive"] }
codespan-reporting = "0.11.1"
colored = "2.0.4"
curl = "0.4.44"
env_logger.workspace = true
flate2 = "1.0.28"
inquire = "0.6.2"
itertools = {version = "0.12.0"}
log.workspace = true
petgraph = "0.6.4"
proc-macro2 = { version = "1.0.69", features = ["span-locations"] }
quote = "1.0.33"
ra_ap_hir = "0.0.185"
ra_ap_hir_def = "0.0.185"
ra_ap_hir_expand = "0.0.185"
ra_ap_hir_ty = "0.0.185"
ra_ap_ide = "0.0.185"
ra_ap_ide_db = "0.0.185"
ra_ap_load-cargo = "0.0.185"
ra_ap_paths = "0.0.185"
ra_ap_project_model = "0.0.185"
ra_ap_syntax = "0.0.185"
ra_ap_vfs = "0.0.185"
ra_ap_cfg = "0.0.185"
regex = "1.10.6"
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
serde_with.workspace = true
semver = "1.0.20"
sha2 = "0.10.8"
syn = { version = "2.0", features = ["full", "extra-traits"] }
tar = "0.4.40"
toml = "0.8.8"
walkdir = "2.4.0"
parse-display = "0.8.2"
home.workspace = true
csv = "1.3.0"
threadpool = "1.8.1"
serde_stacker = "0.1.11"
[workspace.dependencies]
serde_json = { version = "1.0.108", features = ["unbounded_depth"] }
log = "0.4.20"
serde = { version = "1.0.192", features = ["derive"] }
anyhow = "1.0.75"
env_logger = "0.10.1"
home = "0.5.5"
serde_with = "3.4.0"