-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
71 lines (66 loc) · 1.88 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
[package]
name = "prevant"
version = "0.9.0"
authors = ["Marc Schreiber <[email protected]>"]
repository = "https://github.com/aixigo/PREvant/"
edition = "2018"
resolver = "2"
[[bin]]
name = "prevant"
path = "src/main.rs"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
async-stream = "0.3"
base64 = "0.22"
boa_engine = "0.19"
bollard = { version = "0.18", features = ["chrono"] }
bytesize = { version = "1.3", features = ["serde"] }
bytes = "1.7"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.4", features = ["derive", "cargo", "help", "usage", "error-context"] }
dyn-clone = "1.0"
env_logger = "0.11"
evmap = "10.0"
figment = { version = "0.10", features = ["env", "toml"] }
futures = { version = "0.3", features = ["compat"] }
handlebars = "6.0"
http = "1.1"
http-api-problem = "0.58"
hyper = "1.5"
hyper-util = "0.1"
http-body-util = "0.1"
jira_query = "1.5"
jsonschema = "0.26"
k8s-openapi = { version = "0.23", default-features = false, features = ["v1_26"] }
kube = { version = "0.97", default-features = false, features = ["client", "derive", "rustls-tls", "ws"] }
lazy_static = "1.5"
log = "0.4"
multimap = "0.10"
oci-client = "0.14"
pest = "2.7"
pest_derive = "2.7"
regex = "1.11"
regex-syntax = "0.8"
rocket = { version = "0.5", features = ["json"] }
schemars = "0.8"
secstr = { version = "0.5", features = ["serde"] }
serde = "1.0"
serde-value = "0.7"
serde_derive = "1.0"
serde_json = "1.0"
serde_regex = "1.1"
serde_yaml = "0.9"
tar = "0.4"
thiserror = "2.0"
tokio = { version = "1.41", features = ["macros", "rt", "rt-multi-thread", "sync", "time"] }
tokio-stream = { version = "0.1", features = ["sync"] }
toml = "0.8"
url = { version = "2.4", features = ["serde"] }
uuid = { version = "1.9", features = ["serde", "v4"] }
yansi = "1.0"
[dev-dependencies]
assert-json-diff = "2.0"
figment = { version = "0.10", features = ["test"] }
sha2 = "0.10"
tempfile = "3.7"