Skip to content

Commit

Permalink
Merge pull request #801 from dreamer/po/trim-time-dep
Browse files Browse the repository at this point in the history
Disable unused default features of chrono crate
  • Loading branch information
nightkr authored Jan 31, 2022
2 parents 3381e69 + 84f713d commit bfaea85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kube-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
base64 = { version = "0.13.0", optional = true }
chrono = { version = "0.4.19", optional = true }
chrono = { version = "0.4.19", optional = true, default-features = false }
dirs = { package = "dirs-next", optional = true, version = "2.0.0" }
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"
Expand Down
2 changes: 1 addition & 1 deletion kube-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ form_urlencoded = "1.0.1"
http = "0.2.5"
json-patch = { version = "0.2.6", optional = true }
once_cell = "1.8.0"
chrono = "0.4.19"
chrono = { version = "0.4.19", default-features = false, features = ["clock"] }
schemars = { version = "0.8.6", optional = true }

[dependencies.k8s-openapi]
Expand Down
2 changes: 1 addition & 1 deletion kube-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ kube = { path = "../kube", default-features = false, version = "<1.0.0, >=0.61.0
k8s-openapi = { version = "0.14.0", default-features = false, features = ["v1_22"] }
schemars = { version = "0.8.6", features = ["chrono"] }
validator = { version = "0.14.0", features = ["derive"] }
chrono = "0.4.19"
chrono = { version = "0.4.19", default-features = false }
trybuild = "1.0.48"

0 comments on commit bfaea85

Please sign in to comment.