-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (54 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
59 lines (54 loc) · 1.67 KB
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
[workspace]
resolver = "2"
members = [
"api",
"scaler",
"agent",
"thorctl",
"reactor",
"event-handler",
"thoradm",
"search-streamer",
"operator",
"thorium-derive",
"cart-rs",
"python/thorpy",
"python/thorpy-stubs"
]
default-members = [
"api",
"scaler",
"agent",
"thorctl",
"reactor",
"event-handler",
"thoradm",
"search-streamer",
"operator",
"thorium-derive",
"cart-rs"
]
[workspace.package]
version = "1.6.1"
authors = ["mcarson <mcarson@sandia.gov>", "gmbaker <gmbaker@sandia.gov>", "jehamza <jehamza@sandia.gov>"]
edition = "2024"
[profile.profiling]
inherits = "release"
debug = true
[workspace.dependencies]
thorium-api = { version= "1.6.1", path="api", default-features = false }
thorium-derive = { version = "1.6.1", path = "thorium-derive" }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "multipart", "stream", "blocking"] }
tokio = { version = "1.45", features = ["full"] }
kube = { git = "https://github.com/stackabletech/kube-rs.git", rev="cfdfcd1", features = ["rustls-tls", "derive", "config", "client", "runtime", "http-proxy"] }
kube-derive = { git = "https://github.com/stackabletech/kube-rs.git", rev="cfdfcd1" }
k8s-openapi = { version = "0.26", default-features = false, features = ["v1_30"] }
schemars = { version = "1.0.4", features = ["uuid1"] }
tracing = { version = "0.1" }
opentelemetry = { version = "0.30", features = ["trace"] }
clap = { version = "4", features = ["derive", "wrap_help", "string"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
cart-rs = { version = "1.2.5", path = "cart-rs"}
openssl = "0.10"