Skip to content
/ kube-rs Public
forked from kube-rs/kube

Commit

Permalink
Update jsonpath_lib to v0.3.0 (kube-rs#541)
Browse files Browse the repository at this point in the history
`jsonpath_lib` v0.2 unnecessarily depends on an older version of the
`env_logger` crate, which raises conflicts in tools like `cargo-deny`.

v0.3.0 fixes this by removing this dependency.
  • Loading branch information
olix0r authored Jun 3, 2021
1 parent a2c7aef commit 463205c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kube/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ tokio = { version = "1.0.1", features = ["time", "signal", "sync"], optional = t
static_assertions = "1.1.0"
kube-derive = { path = "../kube-derive", version = "^0.55.0", optional = true }
kube-core = { path = "../kube-core", version = "^0.55.0"}
jsonpath_lib = { version = "0.2.6", optional = true }
jsonpath_lib = { version = "0.3.0", optional = true }
tokio-util = { version = "0.6.0", optional = true, features = ["io", "codec"] }
hyper = { version = "0.14.2", optional = true, features = ["client", "http1", "stream", "tcp"] }
hyper-tls = { version = "0.5.0", optional = true }
Expand Down

0 comments on commit 463205c

Please sign in to comment.