-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (42 loc) · 1.14 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
[package]
name = "runo"
description = "rūnō - A Secrets Generator for Kubernetes written in Rust"
authors = ["Aljoscha Pörtner <[email protected]>"]
version = "0.2.13"
edition = "2021"
license = "MIT"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.42.0", features = ["full"] }
kube = { version = "0.97.0", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.23.0", features = ["v1_26"] }
futures = "0.3.31"
futures-util = "0.3.28"
thiserror = "2.0.7"
rand = "0.8.5"
regex = "1.11.1"
rand_regex = "0.17.0"
cron = "0.13.0"
chrono = "0.4.38"
serde = "1.0.216"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["json", "env-filter"] }
sha3 = "0.10.8"
actix-web = "4.8.0"
anyhow = "1.0.94"
clap = { version = "4.5.22", features = ["derive"] }
time = "0.3.37"
sha2 = "0.10.8"
[dev-dependencies]
assert_cmd = "2.0.14"
criterion = { version = "0.5.1", features = ["html_reports"] }
rstest = "0.23.0"
temp-env = "0.3.6"
[[bench]]
name = "main"
harness = false
[[bin]]
name = "runo"
path = "src/main.rs"
bench = false