This repository has been archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
60 lines (55 loc) · 1.52 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
[package]
name = "trow"
version = "0.6.0"
authors = []
edition = "2021"
[workspace]
members = ["trow-server", "trow-protobuf"]
[features]
sqlite = []
[dependencies]
futures = "0.3"
axum = { version = "0.6.18", features = ["headers", "tracing"] }
axum-server = { version = "0.5", features = ["tls-rustls"] }
tower = "0.4"
tower-http = { version = "0.4", features = ["cors", "normalize-path"] }
rand = "0.8"
frank_jwt = "3.1"
rust-argon2 = "1.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.21.0"
anyhow = "1.0"
trow-protobuf = { path = "./trow-protobuf" }
trow-server = { path = "./trow-server" }
derive_more = "0.99"
clap = { version = "4.1.0", features = ["derive"] }
tonic = "0.9.0"
prost = "0.11.9"
prost-types = "0.11.9"
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.83", features = ["admission"] }
k8s-openapi = { version = "0.18.0", features = ["v1_24"] }
json-patch = "1.0.0"
tokio = { version = "1", features = ["macros"] }
tokio-util = { version = "0.7.8", features = ["codec"] }
hyper = "0.14"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing = "0.1.37"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
environment = "^0.1"
reqwest = { version = "0.11", features = ["blocking", "json", "gzip"] }
libc = "0.2"
tempfile = "3"