124 lines
2.3 KiB
TOML
124 lines
2.3 KiB
TOML
|
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
||
|
|
#
|
||
|
|
# When uploading crates to the registry Cargo will automatically
|
||
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
||
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
||
|
|
# to registry (e.g., crates.io) dependencies.
|
||
|
|
#
|
||
|
|
# If you are reading this file be aware that the original Cargo.toml
|
||
|
|
# will likely look very different (and much more reasonable).
|
||
|
|
# See Cargo.toml.orig for the original contents.
|
||
|
|
|
||
|
|
[package]
|
||
|
|
edition = "2021"
|
||
|
|
rust-version = "1.81.0"
|
||
|
|
name = "kube-derive"
|
||
|
|
version = "0.99.0"
|
||
|
|
authors = [
|
||
|
|
"clux <sszynrae@gmail.com>",
|
||
|
|
"Natalie Klestrup Röijezon <nat@nullable.se>",
|
||
|
|
"kazk <kazk.dev@gmail.com>",
|
||
|
|
]
|
||
|
|
build = false
|
||
|
|
autolib = false
|
||
|
|
autobins = false
|
||
|
|
autoexamples = false
|
||
|
|
autotests = false
|
||
|
|
autobenches = false
|
||
|
|
description = "Custom derives for the kube kubernetes crates"
|
||
|
|
readme = "README.md"
|
||
|
|
keywords = [
|
||
|
|
"kubernetes",
|
||
|
|
"macro",
|
||
|
|
"customresource",
|
||
|
|
"crd",
|
||
|
|
]
|
||
|
|
categories = [
|
||
|
|
"api-bindings",
|
||
|
|
"encoding",
|
||
|
|
]
|
||
|
|
license = "Apache-2.0"
|
||
|
|
repository = "https://github.com/kube-rs/kube"
|
||
|
|
resolver = "1"
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
name = "kube_derive"
|
||
|
|
path = "src/lib.rs"
|
||
|
|
proc-macro = true
|
||
|
|
|
||
|
|
[[test]]
|
||
|
|
name = "crd_enum_test"
|
||
|
|
path = "tests/crd_enum_test.rs"
|
||
|
|
|
||
|
|
[[test]]
|
||
|
|
name = "crd_schema_test"
|
||
|
|
path = "tests/crd_schema_test.rs"
|
||
|
|
|
||
|
|
[[test]]
|
||
|
|
name = "resource"
|
||
|
|
path = "tests/resource.rs"
|
||
|
|
|
||
|
|
[[test]]
|
||
|
|
name = "test_ui"
|
||
|
|
path = "tests/test_ui.rs"
|
||
|
|
|
||
|
|
[dependencies.darling]
|
||
|
|
version = "0.20.3"
|
||
|
|
|
||
|
|
[dependencies.proc-macro2]
|
||
|
|
version = "1.0.29"
|
||
|
|
|
||
|
|
[dependencies.quote]
|
||
|
|
version = "1.0.10"
|
||
|
|
|
||
|
|
[dependencies.serde]
|
||
|
|
version = "1.0.130"
|
||
|
|
features = ["derive"]
|
||
|
|
|
||
|
|
[dependencies.serde_json]
|
||
|
|
version = "1.0.68"
|
||
|
|
|
||
|
|
[dependencies.syn]
|
||
|
|
version = "2.0.38"
|
||
|
|
features = ["extra-traits"]
|
||
|
|
|
||
|
|
[dev-dependencies.assert-json-diff]
|
||
|
|
version = "2.0.2"
|
||
|
|
|
||
|
|
[dev-dependencies.chrono]
|
||
|
|
version = "0.4.34"
|
||
|
|
default-features = false
|
||
|
|
|
||
|
|
[dev-dependencies.k8s-openapi]
|
||
|
|
version = "0.24.0"
|
||
|
|
features = ["latest"]
|
||
|
|
default-features = false
|
||
|
|
|
||
|
|
[dev-dependencies.kube]
|
||
|
|
version = "<2.0.0, >=0.98.0"
|
||
|
|
features = [
|
||
|
|
"derive",
|
||
|
|
"client",
|
||
|
|
]
|
||
|
|
|
||
|
|
[dev-dependencies.prettyplease]
|
||
|
|
version = "0.2.25"
|
||
|
|
|
||
|
|
[dev-dependencies.schemars]
|
||
|
|
version = "0.8.6"
|
||
|
|
features = ["chrono"]
|
||
|
|
|
||
|
|
[dev-dependencies.serde]
|
||
|
|
version = "1.0.130"
|
||
|
|
features = ["derive"]
|
||
|
|
|
||
|
|
[dev-dependencies.serde_yaml]
|
||
|
|
version = "0.9.19"
|
||
|
|
|
||
|
|
[dev-dependencies.trybuild]
|
||
|
|
version = "1.0.48"
|
||
|
|
|
||
|
|
[lints.rust]
|
||
|
|
missing_docs = "deny"
|
||
|
|
unsafe_code = "forbid"
|