From: Ian Jackson Date: Thu, 25 Jun 2020 17:47:01 +0000 (+0100) Subject: index_map X-Git-Tag: otter-0.2.0~1559 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=9d7bc880d5d4159c2d63e9edcace72a65db5bb75;p=otter.git index_map --- diff --git a/Cargo.lock.example b/Cargo.lock.example index 9f5b30e6..fc5b7933 100644 --- a/Cargo.lock.example +++ b/Cargo.lock.example @@ -359,6 +359,7 @@ version = "0.0.1" dependencies = [ "anyhow", "fehler", + "index_vec", "lazy_static", "rocket", "rocket_contrib", @@ -486,6 +487,12 @@ dependencies = [ "unicode-normalization", ] +[[package]] +name = "index_vec" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d2d1585c10842c1bbc5abdceebf2b35d1aa81e66db83370f0e02d2189babe0d" + [[package]] name = "indexmap" version = "1.4.0" diff --git a/Cargo.toml b/Cargo.toml index d65b9c49..2445fd53 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,6 +27,8 @@ lazy_static = "1.0.0" slotmap = { version = "0.4", features = ['serde'] } fehler = "1" +index_vec = "0.1.1" + rocket = "0.4" rocket_contrib = { version = "0.4", default-features=false, features=["tera_templates","helmet","json"] }