[package]
name = "cpp_map"
description = "A simple C++ std::map emulator"
version = "0.2.0"
authors = ["eadf"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.87.0"
readme = "README.md"
repository = "https://codeberg.org/eadf/cpp_map_rs"
keywords = ["cpp", "map"]
exclude = [
"img/*",
"idea/*",
".github/*",
"examples/input_data/*"
]
[features]
console_debug = []
linkedlist_midpoint = []
[dependencies]
thiserror = "2.0.17"
smallvec = "1.15.0"
rand = "0.9.1"
[dev-dependencies]
rand = "0.9.1"
[[example]]
name = "main"
path = "examples/main.rs"
[profile.release]
lto = true
[package.metadata.docs.rs]
all-features = false
features = ["linkedlist_midpoint"]