blob: dcc8307b5a00ae0816f36313f3c675561476d880 [file] [log] [blame]
[package]
name = "linked-hash-map"
version = "0.5.0"
license = "MIT/Apache-2.0"
description = "A HashMap wrapper that holds key-value pairs in insertion order"
authors = [
"Stepan Koltsov <stepan.koltsov@gmail.com>",
"Andrew Paseltiner <apaseltiner@gmail.com>",
]
repository = "https://github.com/contain-rs/linked-hash-map"
homepage = "https://github.com/contain-rs/linked-hash-map"
documentation = "https://contain-rs.github.io/linked-hash-map/linked_hash_map"
keywords = ["data-structures"]
readme = "README.md"
[features]
nightly = []
serde_impl = ["serde", "serde_test"]
heapsize_impl = ["heapsize"]
[target.'cfg(not(target_env = "sgx"))'.dependencies]
sgx_tstd = { path = "../../sgx_tstd" }
[dependencies]
# clippy = { version = "0.*", optional = true }
serde = { version = "1.0", path = "../serde-rs/serde/serde", optional = true }
serde_test = { version = "1.0", path = "../serde-rs/serde/serde_test", optional = true }
heapsize = { version = "0.4", path = "../heapsize", optional = true }