-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (50 loc) · 1.55 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (50 loc) · 1.55 KB
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.9.1"
edition = "2024"
rust-version = "1.95"
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.102"
clap = { version = "4.6.1", features = [ "derive" ] }
serde = { version = "1.0.228", features = [ "derive", "rc" ] }
toml = "1.1.2"
serde_json = "1.0.149"
cargo_metadata = "0.23.1"
object = "0.39.1"
ar = "0.9.0"
gimli = { version = "0.33.0", default-features = false, features = ["read"] }
rustc-demangle = "0.1.27"
once_cell = "1.21.4"
is-terminal = "0.4.17"
colored = "3.1.1"
ra-ap-rustc_lexer = "0.163.0"
indoc = "2.0.7"
log = { version = "0.4.29", features = [ "std" ] }
addr2line = { version = "0.26.1", default-features = false, features = [ "std" ] }
tempfile = "3.27.0"
rustc-hash = "2.1.2"
tui-input = "0.15.3"
toml_edit = { version = "0.25.11" }
ratatui = { version = "0.30.0", optional = true }
diff = { version = "0.1.13", optional = true }
crossterm = { version = "0.29.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