forked from acrlabs/simkube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
76 lines (70 loc) · 2.12 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
[workspace]
resolver = "2"
members = [
"sk-api",
"sk-cli",
"sk-core",
"sk-ctrl",
"sk-driver",
"sk-store",
"sk-tracer",
]
[workspace.package]
version = "1.1.1"
authors = ["Applied Computing Research Labs"]
documentation = "https://appliedcomputing.io/simkube/"
license-file = "LICENSE"
readme = "README.md"
edition = "2021"
rust-version = "1.79"
[profile.dev.package."*"]
debug = false
[workspace.dependencies]
sk-api = { version = "1.1.1", path = "sk-api" }
sk-core = { version = "1.1.1", path = "sk-core" }
sk-store = { version = "1.1.1", path = "sk-store" }
anyhow = { version = "1.0.75", features = ["backtrace"] }
async-recursion = "1.0.5"
async-trait = "0.1.80"
bytes = "1.5.0"
chrono = "0.4.38"
clap = { version = "4.3.21", features = ["cargo", "derive", "string"] }
clap_complete = "4.5.6"
clockabilly = "0.1.0"
derive_setters = "0.1.6"
dirs = "5.0.1"
either = "1.12.0"
futures = "0.3.28"
json-patch = "1.2.0"
k8s-openapi = { version = "0.19.0", features = ["v1_27"] }
object_store = { version = "0.11.0", features = ["aws", "gcp", "azure", "http"] }
# remove this fork once https://github.com/uutils/parse_datetime/pull/80 is merged and a new version released
parse_datetime_fork = { version = "0.6.0-custom" }
paste = "1.0.14"
ratatui = "0.28.1"
regex = "1.10.2"
reqwest = { version = "0.11.18", default-features = false, features = ["json", "rustls-tls"] }
rmp-serde = "1.1.2"
rocket = { version = "0.5.0", features = ["json", "tls"] }
schemars = { version = "0.8.12", features = ["chrono"] }
serde = "1.0.188"
serde_json = "1.0.105"
serde_yaml = "0.9.25"
thiserror = "1.0.46"
tokio = { version = "1.28.2", features = ["io-util", "macros", "process", "rt-multi-thread", "signal"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.4.1"
# test dependencies
assertables = "8.18.0"
http = "0.2.9"
httpmock = "0.6.8"
hyper = "0.14.27"
insta = "1.40.0"
mockall = "0.11.4"
rstest = "0.18.2"
tracing-test = "0.2.4"
[workspace.dependencies.kube]
version = "0.85.0"
features = ["client", "derive", "runtime", "rustls-tls", "admission", "unstable-runtime"]
default-features = false