-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
57 lines (50 loc) · 1.54 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
[package]
name = "cargo-acl"
version = "0.8.0"
edition = "2021"
rust-version = "1.74"
license = "MIT OR Apache-2.0"
description = "A Rust code ACL checker"
readme = "README.md"
repository = "https://github.com/cackle-rs/cackle"
keywords = ["cargo", "plugin", "security", "supply-chain"]
[dependencies]
anyhow = "1.0.33"
clap = { version = "4.2.1", features = [ "derive" ] }
serde = { version = "1.0.136", features = [ "derive", "rc" ] }
toml = "0.8.0"
serde_json = "1.0.95"
cargo_metadata = "0.18.0"
object = "0.32.0"
ar = "0.9.0"
gimli = { version = "0.28.0", default-features = false, features = ["read"] }
rustc-demangle = "0.1.22"
once_cell = "1.17.1"
is-terminal = "0.4.8"
colored = "2.0.0"
rustc-ap-rustc_lexer = "727.0.0"
indoc = "2.0.1"
log = { version = "0.4.19", features = [ "std" ] }
addr2line = { version = "0.21.0", default-features = false, features = [ "std" ] }
tempfile = "3.6.0"
fxhash = "0.2.1"
tui-input = "0.8.0"
toml_edit = { version = "0.20.0" }
ratatui = { version = "0.24.0", optional = true }
diff = { version = "0.1.13", optional = true }
crossterm = { version = "0.27.0", optional = true }
[features]
default = ["ui"]
# Enable the "ui" subcommand.
ui = ["ratatui", "diff", "crossterm"]
# Build even on an operating system that isn't yet supported. Enable this feature if you're working
# on porting.
unsupported-os = []
# Profile used for CI. We turn off incremental compilation and debug info, since both are
# unnecessary in CI and slow things down.
[profile.ci]
inherits = "dev"
incremental = false
debug = 0
[profile.release]
#strip = true