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