-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
33 lines (25 loc) · 908 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
33
[package]
name = "kube_quantity"
version = "0.8.0"
authors = ["Thomas Kosiewski <thoma471@googlemail.com>"]
description = "kube_quantity is a library adding arithmetic operations to the Quantity type from the k8s-openapi crate."
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/ThomasK33/kube-quantity-rs"
keywords = ["kubernetes", "k8s", "cncf"]
categories = ["algorithms", "data-structures", "encoding"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
k8s-openapi = { version = "0.23.0", default-features = false }
nom = "7.1.3"
rust_decimal = "1.36.0"
thiserror = "1.0.64"
[dev-dependencies]
k8s-openapi = { version = "0.23.0", default-features = false, features = [
"latest",
] }
[features]
__check = ["k8s-openapi/latest"]
[package.metadata.docs.rs]
features = ["k8s-openapi/latest"]