From: Ian Jackson Date: Sat, 26 Sep 2020 22:18:59 +0000 (+0100) Subject: ordered_float X-Git-Tag: otter-0.2.0~879 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=a31e0d36cbbe69e29ea2e3f94b902a89391ce454;p=otter.git ordered_float Signed-off-by: Ian Jackson --- diff --git a/Cargo.lock.example b/Cargo.lock.example index eb327222..b036a113 100644 --- a/Cargo.lock.example +++ b/Cargo.lock.example @@ -1047,6 +1047,15 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" +[[package]] +name = "ordered-float" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fe9037165d7023b1228bc4ae9a2fa1a2b0095eca6c2998c624723dfd01314a5" +dependencies = [ + "num-traits", +] + [[package]] name = "otter" version = "0.0.1" @@ -1069,6 +1078,7 @@ dependencies = [ "log 0.4.11", "nix", "num-traits", + "ordered-float", "percent-encoding 2.1.0", "pwd", "rand", diff --git a/Cargo.toml b/Cargo.toml index 2bc8b559..b893af65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,6 +51,8 @@ num-traits = "0.2" typetag = "0.1.6" #inventory = "0.1" +ordered-float = "2" + rmp-serde = "0.14" rmp = "0.8"