From: Ian Jackson Date: Sat, 18 Jul 2020 22:53:50 +0000 (+0100) Subject: use our KeyDataExt X-Git-Tag: otter-0.2.0~1294 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=0cb8ff67987e7b74c0094112b56fd909480b1f33;p=otter.git use our KeyDataExt --- diff --git a/Cargo.lock.example b/Cargo.lock.example index f4a2a441..c1b1535c 100644 --- a/Cargo.lock.example +++ b/Cargo.lock.example @@ -1188,6 +1188,8 @@ checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" [[package]] name = "slotmap" version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c46a3482db8f247956e464d783693ece164ca056e6e67563ee5505bdb86452cd" dependencies = [ "serde", ] diff --git a/src/imports.rs b/src/imports.rs index 7c90590e..8948593d 100644 --- a/src/imports.rs +++ b/src/imports.rs @@ -58,6 +58,7 @@ pub use crate::keydata::*; pub use crate::updates::*; pub use crate::sse; pub use crate::error::*; +pub use crate::slotmap_slot_idx::*; pub type E = anyhow::Error; pub type AE = anyhow::Error;