forked from amphitheatre-app/common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (35 loc) · 1.26 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
[package]
name = "amp-common"
description = "Rust libraries shared across Amphitheatre components and libraries"
version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
homepage = "https://amphitheatre.app"
repository = "https://github.com/amphitheatre-app/common"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.81"
chrono = "0.4.37"
confy = "0.6.1"
convert_case = "0.6.0"
data-encoding = "2.5.0"
dirs = "5.0.1"
json_comments = "0.2.2"
k8s-openapi = { version = "0.22.0", default-features = false, features = ["schemars", "v1_30"] }
kube = { version = "0.91.0", default-features = false, features = ["client", "runtime", "derive", "rustls-tls"] }
notify = "6.1.1"
oci-distribution = { version = "0.11.0", default-features = false, features = ["rustls-tls", "test-registry"] }
schemars = "0.8.16"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
thiserror = "1.0.58"
toml = "0.8.12"
tracing = "0.1.40"
ureq = { version = "2.9.6", features = ["json"] }
url = "2.5.0"
utoipa = { version = "4.2.0", features = ["axum_extras", "uuid", "chrono"] }
validator = { version = "0.18.0", features = ["derive"] }
[dev-dependencies]
assert_matches = "1.5.0"
mockito = "1.4.0"