-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (63 loc) · 1.91 KB
/
Copy pathCargo.toml
File metadata and controls
79 lines (63 loc) · 1.91 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[workspace]
resolver = "2"
members = [
"crates/spur-cloud-api",
"crates/spur-cloud-common",
]
[workspace.package]
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
publish = false
repository = "https://github.com/ROCm/spur-cloud"
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
# gRPC (client to spurctld)
tonic = "0.14"
prost = "0.14"
prost-types = "0.14"
# REST API
axum = { version = "0.7", features = ["json", "ws"] }
axum-extra = { version = "0.9", features = ["typed-header", "cookie"] }
tower = { version = "0.4", features = ["util"] }
tower-http = { version = "0.5", features = ["cors", "trace"] }
# CLI
clap = { version = "4", features = ["derive", "env"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Database
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "postgres", "chrono", "uuid"] }
# K8s (for kube exec terminal bridge)
kube = { version = "0.97", features = ["runtime", "derive", "client", "ws"] }
k8s-openapi = { version = "0.23", features = ["latest"] }
# Auth
jsonwebtoken = "9"
argon2 = "0.5"
# HTTP client (for OAuth/OIDC)
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Error handling
thiserror = "2"
anyhow = "1"
# K8s CRD schema
schemars = "0.8"
# Misc
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4", "serde"] }
futures-util = "0.3"
bytes = "1"
url = "2"
base64 = "0.22"
rand = "0.8.6"
sha2 = "0.10"
semver = "1"
# Spur proto — pinned to ROCm/spur commit (includes CDI device API from PR #262)
spur-proto = { git = "https://github.com/ROCm/spur.git", rev = "5781872920935f38b9b9c9734bbaefb29d9a6fb3" }
# Internal
spur-cloud-common = { path = "crates/spur-cloud-common" }