From: Ian Jackson Date: Tue, 20 Oct 2020 18:38:09 +0000 (+0100) Subject: num-derive X-Git-Tag: otter-0.2.0~615 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=9dc746de5ca3dfa9bbf7b15265b4e698a6792dc5;p=otter.git num-derive Signed-off-by: Ian Jackson --- diff --git a/Cargo.lock.example b/Cargo.lock.example index d69c21f3..2b2213d9 100644 --- a/Cargo.lock.example +++ b/Cargo.lock.example @@ -1014,6 +1014,17 @@ dependencies = [ "winapi 0.3.9", ] +[[package]] +name = "num-derive" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f09b9841adb6b5e1f89ef7087ea636e0fd94b2851f887c1e3eb5d5f8228fab3" +dependencies = [ + "proc-macro2 1.0.24", + "quote 1.0.7", + "syn 1.0.44", +] + [[package]] name = "num-integer" version = "0.1.43" @@ -1088,6 +1099,7 @@ dependencies = [ "lazy_static", "log 0.4.11", "nix", + "num-derive", "num-traits", "ordered-float", "otter-zcoord", diff --git a/Cargo.toml b/Cargo.toml index d7901ca2..5c228355 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,6 +37,7 @@ itertools = "0.9" lazy_static = "1" log = "0.4" nix = "0.18" +num-derive = "0.3" num-traits = "0.2" ordered-float = "2" parking_lot = "0.11"