-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
38 lines (32 loc) · 1.02 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
[package]
name = "gateway-api"
description = "Kubernetes Gateway API bindings in Rust"
categories = ["api-bindings"]
keywords = ["kubernetes", "gateway-api"]
homepage = "https://docs.rs/crate/gateway-api/"
readme = "../README.md"
repository = "https://github.com/kube-rs/gateway-api-rs"
authors.workspace = true
edition.workspace = true
license.workspace = true
version.workspace = true
[dependencies]
delegate.workspace = true
k8s-openapi = { workspace = true, features = ["schemars"] }
kube = { workspace = true, default-features = false, features = ["derive"] }
once_cell.workspace = true
regex.workspace = true
schemars.workspace = true
serde_json.workspace = true
serde.workspace = true
serde_yaml.workspace = true
[dev-dependencies]
k8s-openapi = { workspace = true, features = [ "v1_32", "schemars" ] }
kube = { workspace = true, features = ["derive"] }
anyhow.workspace = true
hyper-util.workspace = true
tokio.workspace = true
tower.workspace = true
uuid.workspace = true
[package.metadata.docs.rs]
features = [ "k8s-openapi/v1_32" ]