forked from linkerd/k8s-gateway-api-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 843 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
28
29
30
31
32
[workspace]
members = [".", "integration"]
[package]
name = "k8s-gateway-api"
version = "0.16.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/linkerd/k8s-gateway-api-rs"
rust-version = "1.65"
keywords = ["kubernetes", "gateway"]
description = "Rust bindings for the Kubenetes Gateway API"
[features]
default = []
experimental = []
[dependencies]
kube = { version = "0.87", default-features = false, features = ["derive"] }
k8s-openapi = { version = "0.20", features = ["schemars"] }
schemars = { version = "0.8", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[dev-dependencies.k8s-openapi]
version = "0.20"
default-features = false
features = ["latest"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
features = ["experimental", "k8s-openapi/latest"]