From f79d937ea7f4cd0f7caadfd5b01f847f36216fc9 Mon Sep 17 00:00:00 2001 From: Enrico Risa Date: Fri, 13 Sep 2024 14:16:40 +0200 Subject: [PATCH] chore: change dependabot folder --- .github/dependabot.yml | 2 +- Cargo.lock | 62 +++--------------------------------- edc-connector-tui/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 59 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7a0df17..c11601f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,7 @@ version: 2 updates: - package-ecosystem: cargo - directory: "/edc-connector-client" + directory: "/" schedule: interval: daily time: "04:00" diff --git a/Cargo.lock b/Cargo.lock index fa442ce..1f432dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -234,19 +234,6 @@ dependencies = [ "error-code", ] -[[package]] -name = "compact_str" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f86b9c4c00838774a6d902ef931eff7470720c51d90c2e32cfe15dc304737b3f" -dependencies = [ - "castaway", - "cfg-if", - "itoa", - "ryu", - "static_assertions", -] - [[package]] name = "compact_str" version = "0.8.0" @@ -493,7 +480,7 @@ dependencies = [ "enum-ordinalize", "futures", "keyring", - "ratatui 0.26.3", + "ratatui", "serde", "serde_json", "strum", @@ -1028,15 +1015,6 @@ version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4" -[[package]] -name = "itertools" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" -dependencies = [ - "either", -] - [[package]] name = "itertools" version = "0.13.0" @@ -1661,26 +1639,6 @@ dependencies = [ "getrandom", ] -[[package]] -name = "ratatui" -version = "0.26.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f44c9e68fd46eda15c646fbb85e1040b657a58cdc8c98db1d97a55930d991eef" -dependencies = [ - "bitflags 2.6.0", - "cassowary", - "compact_str 0.7.1", - "crossterm 0.27.0", - "itertools 0.12.1", - "lru", - "paste", - "stability", - "strum", - "unicode-segmentation", - "unicode-truncate", - "unicode-width", -] - [[package]] name = "ratatui" version = "0.28.1" @@ -1689,10 +1647,10 @@ checksum = "fdef7f9be5c0122f890d58bdf4d964349ba6a6161f705907526d891efabba57d" dependencies = [ "bitflags 2.6.0", "cassowary", - "compact_str 0.8.0", + "compact_str", "crossterm 0.28.1", "instability", - "itertools 0.13.0", + "itertools", "lru", "paste", "strum", @@ -2052,16 +2010,6 @@ version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" -[[package]] -name = "stability" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d904e7009df136af5297832a3ace3370cd14ff1546a232f4f185036c2736fcac" -dependencies = [ - "quote", - "syn", -] - [[package]] name = "static_assertions" version = "1.1.0" @@ -2403,7 +2351,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3e38ced1f941a9cfc923fbf2fe6858443c42cc5220bfd35bdd3648371e7bd8e" dependencies = [ "crossterm 0.27.0", - "ratatui 0.28.1", + "ratatui", "unicode-width", ] @@ -2440,7 +2388,7 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf" dependencies = [ - "itertools 0.13.0", + "itertools", "unicode-segmentation", "unicode-width", ] diff --git a/edc-connector-tui/Cargo.toml b/edc-connector-tui/Cargo.toml index 554b0a3..f037160 100644 --- a/edc-connector-tui/Cargo.toml +++ b/edc-connector-tui/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] crossterm = "0.27.0" -ratatui = "0.26.0" +ratatui = "0.28.1" tui-textarea = "0.4" anyhow = "1.0.83" dirs-next = "2.0.0"