fix: crate cache & versions (#949)

This commit is contained in:
Adam Perkowski 2024-11-15 00:30:48 +01:00 committed by GitHub
parent 6d7d8dbc61
commit 2dabb934f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 21 additions and 7 deletions

24
Cargo.lock generated
View File

@ -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]]

View File

@ -1,6 +1,6 @@
[workspace.package]
license = "MIT"
version = "24.9.28"
version = "24.10.31"
edition = "2021"
[workspace]

View File

@ -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 }