forked from kube-rs/gateway-api-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (25 loc) · 842 Bytes
/
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
[workspace]
members = ["gateway-api", "gateway-api/examples", "xtask"]
resolver = "2"
[workspace.package]
authors = ["Shane Utt <[email protected]>"]
edition = "2021"
license = "MIT"
version = "0.14.0"
[workspace.dependencies]
anyhow = "1.0.93"
delegate = "0.13.1"
hyper-util = "0.1.10"
kube = { version = "0.96.0", default-features = false, features = ["derive"] }
k8s-openapi = { version = "0.23.0", features = [ "schemars" ] }
once_cell = "1.20.2"
regex = { package = "regex-lite", version = "0.1.6" }
schemars = "0.8.21"
serde_json = "1.0.132"
serde = { version = "1.0.215", features = ["derive"] }
serde_yaml = "0.9.34"
tokio = { version = "1.41.1", features = ["full"] }
tower = { version = "0.5.1", features = ["limit"] }
tracing = "0.1.36"
tracing-subscriber = "0.3.17"
uuid = { version = "1.11.0", features = ["v4", "fast-rng"] }