-
Notifications
You must be signed in to change notification settings - Fork 102
/
Cargo.toml
76 lines (73 loc) · 2.03 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
[package]
name = "trow"
version = "0.6.4"
authors = []
edition = "2021"
[features]
sqlite = []
[dependencies]
futures = "0.3"
axum = { version = "0.7.2", features = ["tracing"] }
# Waiting for an axum-server release: https://github.com/programatik29/axum-server/issues/101
axum-server = { git = "https://github.com/programatik29/axum-server.git", rev = "134725e", features = [
"tls-rustls",
] }
# axum-server = { version = "0.5", features = ["tls-rustls"] }
axum-extra = { version = "0.9.0", features = ["typed-header"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "normalize-path", "trace"] }
jsonwebtoken = "9.2"
rust-argon2 = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_derive = "1.0"
serde_yaml = "0.9.0"
uuid = { version = "1.3", features = ["v4", "serde"] }
base64 = "0.22.0"
anyhow = "1.0"
derive_more = "0.99"
clap = { version = "4.1.0", features = ["derive"] }
bytes = "1"
chrono = { version = "^0.4", features = ["serde"] }
# rusqlite = "0.28.0"
lazy_static = "1.4.0"
regex = "1.5.0"
sha2 = "0.10.0"
hex = "0.4.0"
thiserror = "1.0"
kube = { version = "0.91.0", features = ["admission"] }
k8s-openapi = { version = "0.22.0", features = ["v1_26"] }
json-patch = "1"
tokio = { version = "1", features = ["macros"] }
tokio-util = { version = "0.7.8", features = ["codec", "compat"] }
hyper = "1.0"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing = "0.1.37"
paste = "1.0.14"
async-recursion = "1.0"
reqwest = { version = "0.12", features = [
"json",
"stream",
"rustls-tls",
], default-features = false }
prometheus = "0.13"
fs3 = "0.5.0"
quoted-string = "0.6.1"
aws-config = "1.0.3"
aws-types = "1.0.3"
aws-sdk-ecr = "1.5.0"
const_format = "0.2.24"
async-trait = "0.1.74"
walkdir = "2.0"
rand = "0.8"
humansize = "2.1"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
environment = "^0.1"
libc = "0.2"
wiremock = "0.6.0"
fastrand = "2.0.1"
http-body-util = "0.1.1"
tracing-test = {version="0.2", features = ["no-env-filter"]}
test-temp-dir = "0.2.1"