Skip to content

Commit c961915

Browse files
authored
chore: Drop json5 feature of config crate (#1525)
json5 crate used by the config is marked as unmaintained. Since there is no real use for it in the code now let's get rid of it while it is painless.
1 parent 0a5afa8 commit c961915

File tree

3 files changed

+1
-46
lines changed

3 files changed

+1
-46
lines changed

Cargo.lock

Lines changed: 0 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deny.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ ignore = [
7373
#"RUSTSEC-0000-0000",
7474
"RUSTSEC-2021-0127", # serde_cbor as optional transitive dep: https://github.com/mozilla/authenticator-rs/issues/327
7575
"RUSTSEC-2024-0436",
76-
"RUSTSEC-2025-0052" # unless low maintained httpmock uses it
7776
#{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" },
7877
#"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish
7978
#{ crate = "a-crate-that-is-yanked@0.1.1", reason = "you can specify why you are ignoring the yanked crate" },

openstack_tui/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async-trait.workspace = true
2323
chrono = { workspace= true }
2424
clap = { workspace = true, features = ["cargo", "derive", "env", "wrap_help", "unicode", "string", "unstable-styles"] }
2525
color-eyre = { workspace = true }
26-
config = { workspace = true, features = ["json", "json5", "yaml"] }
26+
config = { workspace = true, features = ["json", "yaml"] }
2727
# edtui MUST use the same version as ratatui otherwise the Into does not work
2828
crossterm = { version = "0.28.1", features = ["serde", "event-stream"] }
2929
derive_builder = { workspace = true }
@@ -34,7 +34,6 @@ edit = "0.1.5"
3434
eyre = { workspace = true }
3535
futures = { workspace = true }
3636
itertools = { workspace = true }
37-
json5 = "^0.4"
3837
lazy_static = "^1.5"
3938
open.workspace = true
4039
openstack_sdk = { path = "../openstack_sdk", version = "^0.22", default-features = false, features = ["async", "block_storage", "compute", "dns", "identity", "image", "load_balancer", "network"] }

0 commit comments

Comments
 (0)