diff --git a/Cargo.lock b/Cargo.lock index c84ecc08a..a9be79fd6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/config/Cargo.toml b/config/Cargo.toml index ead33fa98..edc576611 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -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"]} diff --git a/lua-api-crates/share-data/Cargo.toml b/lua-api-crates/share-data/Cargo.toml index 1adbbbb89..8304b8923 100644 --- a/lua-api-crates/share-data/Cargo.toml +++ b/lua-api-crates/share-data/Cargo.toml @@ -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" diff --git a/term/Cargo.toml b/term/Cargo.toml index b4b32c554..6cb36a8a0 100644 --- a/term/Cargo.toml +++ b/term/Cargo.toml @@ -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" diff --git a/termwiz/Cargo.toml b/termwiz/Cargo.toml index 45d89a840..c0951aa5f 100644 --- a/termwiz/Cargo.toml +++ b/termwiz/Cargo.toml @@ -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" diff --git a/wezterm-dynamic/Cargo.toml b/wezterm-dynamic/Cargo.toml index 8ee9474d5..a2b68c661 100644 --- a/wezterm-dynamic/Cargo.toml +++ b/wezterm-dynamic/Cargo.toml @@ -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" diff --git a/wezterm-font/Cargo.toml b/wezterm-font/Cargo.toml index 8583d7018..213660af5 100644 --- a/wezterm-font/Cargo.toml +++ b/wezterm-font/Cargo.toml @@ -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" diff --git a/wezterm-gui/Cargo.toml b/wezterm-gui/Cargo.toml index 91f5b9d1d..8392c6970 100644 --- a/wezterm-gui/Cargo.toml +++ b/wezterm-gui/Cargo.toml @@ -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" }