-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
60 lines (54 loc) · 1.17 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
[package]
name = "trunk-toolbox"
# build.rs bypasses package.version, instead using $HORTON_RELEASE and falls back to the current ref
version = "0.0.0"
authors = ["horton <[email protected]>"]
license = "MIT"
description = "trunk custom issue finder"
readme = "README.md"
edition = "2021"
build = "build.rs"
[lib]
name = "horton"
path = "src/lib.rs"
[dependencies]
anyhow = "1.0.64"
clap = { version = "4.0.8", features = ["derive"] }
env_logger = "0.9.1"
git2 = { version = "0.19", default-features = false }
lazy_static = "1.4.0"
log = "0.4.22"
regex = "1.10.6"
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.85"
serde-sarif = "0.3.4"
content_inspector = "0.2.4"
rayon = "1.10.0"
confique = "0.2.5"
glob = "0.3.1"
glob-match = "0.2.1"
url = "2.5.2"
sha2 = "0.10.8"
chrono = "0.4.38"
log4rs = "1.3.0"
tempfile = "3.3.0"
[dev-dependencies]
assert_cmd = "2.0"
function_name = "0.2.0"
predicates = "3.1.2"
spectral = "0.6.0"
tempfile = "3.3.0"
[profile.release]
codegen-units = 1
debug = false
lto = "thin"
opt-level = 3
panic = "abort"
[profile.dev.package."*"]
opt-level = 3
debug = true
incremental = true
[profile.dev]
opt-level = 0
debug = true
incremental = true