-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (43 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
[package]
name = "buckle"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "buckle"
[dependencies]
clap = { version = "4.5.26", features = ["cargo", "env", "string"] }
directories-next = "2.0"
dunce = "1.0"
futures = "0.3"
gethostname = "0.5"
gtmpl = "0.7"
human-errors = "0.1.5"
http = "1.2"
itertools = "0.14"
lazy_static = "1.5"
nix = "0.29.0"
once_cell = "1.20"
opentelemetry = { version = "0.20", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.16", features = ["tls-roots"] }
reqwest = { version = "0.11.23", default-features = false, features = ["rustls-tls", "rustls-tls-webpki-roots", "json", "blocking"] }
rustls = "0.23"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
serde_yaml = "0.9"
solvent = "0.8"
shell-words = "1.1"
tokio = "1"
tonic = { version = "0.11.0", features = ["tls-roots"] }
tracing = { git="https://github.com/SierraSoftworks/tracing.git" , features = ["log"] }
tracing-attributes = { git="https://github.com/SierraSoftworks/tracing.git" }
tracing-futures = { git="https://github.com/SierraSoftworks/tracing.git" , features = ["futures-03"] }
tracing-opentelemetry = { git="https://github.com/SierraSoftworks/tracing.git" }
tracing-subscriber = { git="https://github.com/SierraSoftworks/tracing.git" , features = ["tracing-log"] }
walkdir = "2.5"
webpki-roots = "0.26"
[dev-dependencies]
mocktopus = { git = "https://github.com/notheotherben/mocktopus.git" }
tempfile = "3.14"
[profile.release]
debug = true