1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 05:12:40 +03:00

deps: ordered-float -> 4.1.0

closes: https://github.com/wez/wezterm/pull/4338
This commit is contained in:
Wez Furlong 2023-09-28 14:39:22 -07:00
parent ded7f673f4
commit c75f20f21c
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
8 changed files with 9 additions and 9 deletions

4
Cargo.lock generated
View File

@ -3693,9 +3693,9 @@ dependencies = [
[[package]]
name = "ordered-float"
version = "3.9.1"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a54938017eacd63036332b4ae5c8a49fc8c0c1d6d629893057e4f13609edd06"
checksum = "e3a540f3e3b3d7929c884e46d093d344e4e5bdeed54d08bf007df50c93cc85d5"
dependencies = [
"num-traits",
"rand",

View File

@ -27,7 +27,7 @@ mlua = {version="0.9", features=["vendored", "lua54", "async", "send"]}
# file change notification
notify = "5.0.0"
once_cell = "1.8"
ordered-float = { version = "3.0", features = ["serde"] }
ordered-float = { version = "4.1", features = ["serde"] }
portable-pty = { path = "../pty", features = ["serde_support"]}
promise = { path = "../promise" }
serde = {version="1.0", features = ["rc", "derive"]}

View File

@ -11,4 +11,4 @@ config = { path = "../../config" }
wezterm-dynamic = { path = "../../wezterm-dynamic" }
lazy_static = "1.4"
luahelper = { path = "../../luahelper" }
ordered-float = "3.0"
ordered-float = "4.1"

View File

@ -27,7 +27,7 @@ lazy_static = "1.4"
log = "0.4"
lru = "0.7"
num-traits = "0.2"
ordered-float = "3.0"
ordered-float = "4.1"
serde = {version="1.0", features = ["rc"]}
terminfo = "0.8"
unicode-normalization = "0.1.21"

View File

@ -28,7 +28,7 @@ libc = "0.2"
log = "0.4"
memmem = "0.1"
num-traits = "0.2"
ordered-float = "3.0"
ordered-float = "4.1"
pest = "2.1"
pest_derive = "2.1"
phf = "0.11"

View File

@ -8,7 +8,7 @@ license = "MIT"
[dependencies]
wezterm-dynamic-derive = { version="0.1", path="derive" }
ordered-float = "3.0"
ordered-float = "4.1"
thiserror = "1.0"
strsim = "0.10"
log = "0.4"

View File

@ -28,7 +28,7 @@ lfucache = { path = "../lfucache" }
log = "0.4"
memmap2 = "0.2"
metrics = { version="0.17", features=["std"]}
ordered-float = "3.0"
ordered-float = "4.1"
rangeset = { path = "../rangeset" }
termwiz = { path = "../termwiz" }
thiserror = "1.0"

View File

@ -66,7 +66,7 @@ mlua = {version="0.9", features=["send"]}
mux = { path = "../mux" }
mux-lua = { path = "../lua-api-crates/mux" }
once_cell = "1.8"
ordered-float = "3.0"
ordered-float = "4.1"
parking_lot = "0.12"
portable-pty = { path = "../pty", features = ["serde_support"]}
promise = { path = "../promise" }