mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
Add = to enforce version constraints
This commit is contained in:
parent
714be567ed
commit
3f7f1234fc
9 changed files with 23 additions and 22 deletions
15
Cargo.lock
generated
15
Cargo.lock
generated
|
|
@ -1518,9 +1518,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "proc-macro2"
|
||||
version = "1.0.80"
|
||||
version = "1.0.81"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a56dea16b0a29e94408b9aa5e2940a4eedbd128a1ba20e8f7ae60fd3d465af0e"
|
||||
checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
|
||||
dependencies = [
|
||||
"unicode-ident",
|
||||
]
|
||||
|
|
@ -1554,9 +1554,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ratatui"
|
||||
version = "0.26.2"
|
||||
version = "0.26.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a564a852040e82671dc50a37d88f3aa83bbc690dfc6844cfe7a2591620206a80"
|
||||
checksum = "bcb12f8fbf6c62614b0d56eb352af54f6a22410c3b079eb53ee93c7b97dd31d8"
|
||||
dependencies = [
|
||||
"bitflags 2.5.0",
|
||||
"cassowary",
|
||||
|
|
@ -1848,12 +1848,12 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "stability"
|
||||
version = "0.2.0"
|
||||
version = "0.1.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "2ff9eaf853dec4c8802325d8b6d3dffa86cc707fd7a1a4cdbf416e13b061787a"
|
||||
checksum = "ebd1b177894da2a2d9120208c3386066af06a488255caabc5de8ddca22dbc3ce"
|
||||
dependencies = [
|
||||
"quote",
|
||||
"syn 2.0.59",
|
||||
"syn 1.0.109",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
@ -1903,6 +1903,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"unicode-ident",
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ futures = "0.3.30"
|
|||
image = "0.24.9"
|
||||
imagesize = "0.12.0"
|
||||
kamadak-exif = "0.5.5"
|
||||
ratatui = "0.26.1"
|
||||
ratatui = "=0.26.1"
|
||||
tokio = { version = "1.37.0", features = [ "full" ] }
|
||||
|
||||
# Logging
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ yazi-shared = { path = "../yazi-shared", version = "0.2.4" }
|
|||
|
||||
# External dependencies
|
||||
clap = { version = "4.5.4", features = [ "derive" ] }
|
||||
serde = { version = "1.0.197", features = [ "derive" ] }
|
||||
serde = { version = "1.0.198", features = [ "derive" ] }
|
||||
|
||||
[build-dependencies]
|
||||
clap = { version = "4.5.4", features = [ "derive" ] }
|
||||
|
|
|
|||
|
|
@ -17,8 +17,8 @@ arc-swap = "1.7.1"
|
|||
crossterm = "0.27.0"
|
||||
globset = "0.4.14"
|
||||
indexmap = "2.2.6"
|
||||
ratatui = "0.26.1"
|
||||
serde = { version = "1.0.197", features = [ "derive" ] }
|
||||
ratatui = "=0.26.1"
|
||||
serde = { version = "1.0.198", features = [ "derive" ] }
|
||||
shell-words = "1.1.0"
|
||||
toml = { version = "0.8.12", features = [ "preserve_order" ] }
|
||||
validator = { version = "0.18.1", features = [ "derive" ] }
|
||||
|
|
|
|||
|
|
@ -26,10 +26,10 @@ crossterm = "0.27.0"
|
|||
futures = "0.3.30"
|
||||
notify = { version = "6.1.1", default-features = false, features = [ "macos_fsevent" ] }
|
||||
parking_lot = "0.12.1"
|
||||
ratatui = "0.26.1"
|
||||
ratatui = "=0.26.1"
|
||||
regex = "1.10.4"
|
||||
scopeguard = "1.2.0"
|
||||
serde = "1.0.197"
|
||||
serde = "1.0.198"
|
||||
tokio = { version = "1.37.0", features = [ "full" ] }
|
||||
tokio-stream = "0.1.15"
|
||||
tokio-util = "0.7.10"
|
||||
|
|
@ -42,4 +42,4 @@ tracing = { version = "0.1.40", features = [ "max_level_debug", "release_max_lev
|
|||
libc = "0.2.153"
|
||||
|
||||
[target."cfg(windows)".dependencies]
|
||||
clipboard-win = "5.3.0"
|
||||
clipboard-win = "5.3.1"
|
||||
|
|
|
|||
|
|
@ -16,8 +16,8 @@ yazi-shared = { path = "../yazi-shared", version = "0.2.4" }
|
|||
anyhow = "1.0.82"
|
||||
mlua = { version = "0.9.7", features = [ "lua54", "vendored" ] }
|
||||
parking_lot = "0.12.1"
|
||||
serde = { version = "1.0.197", features = [ "derive" ] }
|
||||
serde_json = "1.0.115"
|
||||
serde = { version = "1.0.198", features = [ "derive" ] }
|
||||
serde_json = "1.0.116"
|
||||
tokio = { version = "1.37.0", features = [ "full" ] }
|
||||
tokio-stream = "0.1.15"
|
||||
tokio-util = "0.7.10"
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ crossterm = { version = "0.27.0", features = [ "event-stream" ] }
|
|||
fdlimit = "0.3.0"
|
||||
futures = "0.3.30"
|
||||
mlua = { version = "0.9.7", features = [ "lua54", "vendored" ] }
|
||||
ratatui = "0.26.1"
|
||||
ratatui = "=0.26.1"
|
||||
scopeguard = "1.2.0"
|
||||
syntect = { version = "5.2.0", default-features = false, features = [ "parsing", "plist-load", "regex-onig" ] }
|
||||
tokio = { version = "1.37.0", features = [ "full" ] }
|
||||
|
|
|
|||
|
|
@ -23,9 +23,9 @@ futures = "0.3.30"
|
|||
md-5 = "0.10.6"
|
||||
mlua = { version = "0.9.7", features = [ "lua54", "vendored", "serialize", "macros", "async" ] }
|
||||
parking_lot = "0.12.1"
|
||||
ratatui = "0.26.1"
|
||||
serde = "1.0.197"
|
||||
serde_json = "1.0.115"
|
||||
ratatui = "=0.26.1"
|
||||
serde = "1.0.198"
|
||||
serde_json = "1.0.116"
|
||||
shell-escape = "0.1.5"
|
||||
shell-words = "1.1.0"
|
||||
syntect = { version = "5.2.0", default-features = false, features = [ "parsing", "plist-load", "regex-onig" ] }
|
||||
|
|
|
|||
|
|
@ -16,9 +16,9 @@ dirs = "5.0.1"
|
|||
futures = "0.3.30"
|
||||
parking_lot = "0.12.1"
|
||||
percent-encoding = "2.3.1"
|
||||
ratatui = "0.26.1"
|
||||
ratatui = "=0.26.1"
|
||||
regex = "1.10.4"
|
||||
serde = "1.0.197"
|
||||
serde = "1.0.198"
|
||||
tokio = { version = "1.37.0", features = [ "full" ] }
|
||||
|
||||
# Logging
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue