-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
92 lines (85 loc) · 2.65 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[package]
name = "broker"
version = "0.3.2"
edition = "2021"
description = "The bridge between FOSSA and internal DevOps services"
readme = "README.md"
homepage = "https://github.com/fossas/broker"
repository = "https://github.com/fossas/broker"
license = "Apache-2.0"
exclude = [ "docs", ".github" ]
# Broker always tracks latest Rust, but this is the minimum required.
rust-version = "1.68"
[features]
jemalloc = ["dep:tikv-jemallocator"]
[dependencies]
bytesize = { version = "1.2.0", features = ["serde"] }
clap = { version = "4.3.23", features = ["derive", "cargo", "env"] }
colored = "2.0.4"
delegate = "0.10.0"
derive-new = "0.5.9"
derive_more = "0.99.17"
dirs = "5.0.1"
error-stack = { version = "0.3.1", features = ["spantrace", "hooks"] }
futures = "0.3.28"
getset = "0.1.2"
humantime = "2.1.0"
indoc = "2.0.1"
once_cell = "1.18.0"
rolling-file = "0.2.0"
secrecy = { version = "0.8.0", features = ["serde"] }
serde = { version = "1.0.164", features = ["derive"] }
strum = { version = "0.24.1", features = ["derive"] }
subtle = "2.4.1"
tempfile = "3.7.0"
serde_yaml = "0.9.25"
thiserror = "1.0.40"
tokio = { version = "1.32.0", features = ["full", "fs"] }
tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.17", features = ["json"] }
url = "2.4.0"
base64 = "0.21.2"
itertools = "0.10.5"
time = { version = "0.3.22", features = ["parsing"] }
reqwest = { version = "0.11.18", features = ["rustls-tls"], default-features = false }
zip = "0.6.6"
bytes = "1.4.0"
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "sqlite", "migrate", "macros", "time", "offline"], default-features = false }
async-trait = "0.1.68"
semver = { version = "1.0.17", features = ["serde"] }
tap = "1.0.1"
tokio-retry = "0.3.0"
uuid = { version = "1.3.3", features = ["v4"] }
atty = "0.2.14"
serde_json = "1.0.96"
cached = "0.43.0"
tracing-test = { version = "0.2.4", features = ["no-env-filter"] }
aho-corasick = "0.7.20"
regex = "1.9.3"
srclib = { git = "https://github.com/fossas/foundation-libs" }
walkdir = "2.3.3"
tar = "0.4.39"
libflate = "2.0.0"
typed-builder = "0.14.0"
which = "4.4.0"
tikv-jemallocator = { version = "0.5.4", optional = true }
deadqueue = "0.2.4"
governor = "0.6.0"
nonzero_ext = "0.3.0"
glob = "0.3.1"
[dev-dependencies]
insta = { version = "1.31.0", features = ["filters", "json", "yaml"] }
proptest = "1.2.0"
strum = { version = "0.24.1", features = ["derive"] }
test-strategy = "0.3.0"
criterion = { version = "0.4", features = ["html_reports"] }
rayon = "1.7.0"
[[bench]]
name = "allocations"
harness = false
[build-dependencies]
error-stack = { version = "0.3.1", features = ["hooks"] }
thiserror = "1.0.40"
[profile.dev.package.insta]
opt-level = 3