diff --git a/Cargo.lock b/Cargo.lock index e7fcd82c5..c65f7f590 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2664,9 +2664,9 @@ dependencies = [ [[package]] name = "ordered-float" -version = "2.10.0" +version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87" +checksum = "96bcbab4bfea7a59c2c0fe47211a1ac4e3e96bea6eb446d704f310bc5c732ae2" dependencies = [ "num-traits", "serde", diff --git a/config/Cargo.toml b/config/Cargo.toml index 5223044b2..180e216b8 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -29,7 +29,7 @@ mlua = {version="0.7", features=["vendored", "lua54", "async", "send"]} # file change notification notify = "4.0" open = "2.0" -ordered-float = { version = "2.10", features = ["serde"] } +ordered-float = { version = "3.0", features = ["serde"] } portable-pty = { path = "../pty", features = ["serde_support"]} promise = { path = "../promise" } serde = {version="1.0", features = ["rc", "derive"]} diff --git a/term/Cargo.toml b/term/Cargo.toml index 512853f6d..de46163b9 100644 --- a/term/Cargo.toml +++ b/term/Cargo.toml @@ -24,7 +24,7 @@ lazy_static = "1.4" log = "0.4" lru = "0.7" num-traits = "0.2" -ordered-float = "2.10" +ordered-float = "3.0" serde = {version="1.0", features = ["rc"]} terminfo = "0.7" unicode-segmentation = "1.8" diff --git a/termwiz/Cargo.toml b/termwiz/Cargo.toml index e09d9983c..31fc77f6b 100644 --- a/termwiz/Cargo.toml +++ b/termwiz/Cargo.toml @@ -25,7 +25,7 @@ libc = "0.2" log = "0.4" memmem = "0.1" num-traits = "0.2" -ordered-float = "2.10" +ordered-float = "3.0" pest = "2.1" pest_derive = "2.1" phf = "0.10" diff --git a/wezterm-font/Cargo.toml b/wezterm-font/Cargo.toml index d7f18bcaf..4fc12b5dc 100644 --- a/wezterm-font/Cargo.toml +++ b/wezterm-font/Cargo.toml @@ -19,7 +19,7 @@ log = "0.4" memmap2 = "0.2" metrics = { version="0.17", features=["std"]} mux = { path = "../mux" } -ordered-float = "2.10" +ordered-float = "3.0" rangeset = { path = "../rangeset" } termwiz = { path = "../termwiz" } thiserror = "1.0" diff --git a/wezterm-gui/Cargo.toml b/wezterm-gui/Cargo.toml index cdc7d7485..e2b204940 100644 --- a/wezterm-gui/Cargo.toml +++ b/wezterm-gui/Cargo.toml @@ -45,7 +45,7 @@ metrics = { version="0.17", features=["std"]} mlua = "0.7" mux = { path = "../mux" } open = "2.0" -ordered-float = "2.10" +ordered-float = "3.0" portable-pty = { path = "../pty", features = ["serde_support", "ssh"]} promise = { path = "../promise" } pulldown-cmark = "0.9"