From 2dabb934f7c631611ebfe390bc8013653f2589b9 Mon Sep 17 00:00:00 2001 From: Adam Perkowski Date: Fri, 15 Nov 2024 00:30:48 +0100 Subject: [PATCH] fix: crate cache & versions (#949) --- Cargo.lock | 24 +++++++++++++++++++----- Cargo.toml | 2 +- tui/Cargo.toml | 2 +- 3 files changed, 21 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 07123221..8128f097 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -381,7 +381,21 @@ checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1" [[package]] name = "linutil_core" -version = "24.9.28" +version = "24.10.31" +dependencies = [ + "ego-tree", + "include_dir", + "serde", + "temp-dir", + "toml", + "which", +] + +[[package]] +name = "linutil_core" +version = "24.10.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2990ea580e635f6700ae19bd0f5fa60c7037799908da476b0c233b9e514c1481" dependencies = [ "ego-tree", "include_dir", @@ -393,12 +407,12 @@ dependencies = [ [[package]] name = "linutil_tui" -version = "24.9.28" +version = "24.10.31" dependencies = [ "ansi-to-tui", "anstyle", "clap", - "linutil_core", + "linutil_core 24.10.31 (registry+https://github.com/rust-lang/crates.io-index)", "nix 0.29.0", "oneshot", "portable-pty", @@ -1303,9 +1317,9 @@ checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904" [[package]] name = "xtask" -version = "24.9.28" +version = "24.10.31" dependencies = [ - "linutil_core", + "linutil_core 24.10.31", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 2fa6d68d..1c032ad4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [workspace.package] license = "MIT" -version = "24.9.28" +version = "24.10.31" edition = "2021" [workspace] diff --git a/tui/Cargo.toml b/tui/Cargo.toml index 5094b815..f5486f62 100644 --- a/tui/Cargo.toml +++ b/tui/Cargo.toml @@ -23,7 +23,7 @@ temp-dir = "0.1.14" time = { version = "0.3.36", features = ["formatting", "local-offset", "macros"], default-features = false } unicode-width = { version = "0.2.0", default-features = false } rand = { version = "0.8.5", optional = true } -linutil_core = { version = "24.9.28", path = "../core" } +linutil_core = { version = "24.10.31" } tree-sitter-highlight = "0.24.3" tree-sitter-bash = "0.23.1" textwrap = { version = "0.16.1", default-features = false }