-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "blazemap"
version = "0.6.0"
authors = ["Andrew Sonin <sonin.cel@yandex.ru>"]
categories = ["data-structures", "concurrency"]
description = """
Implements a vector-based slab-like map with an interface similar to that of HashMap, \
and also provides tools for generating lightweight identifiers that can be type-safely used as keys for this map.
"""
keywords = ["map", "slab", "hashmap"]
license = "MIT"
documentation = "https://docs.rs/blazemap/"
homepage = "https://github.com/andrewsonin/blazemap"
repository = "https://github.com/andrewsonin/blazemap"
readme = "README.md"
edition = "2021"
[lints.rust]
rust_2018_idioms = { level = "warn", priority = 1 }
unreachable_pub = "warn"
missing_docs = "warn"
missing_debug_implementations = "warn"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
[dependencies]
loom = { version = "0.7", optional = true }
once_cell = "1"
parking_lot = "0.12"
serde = { version = "1", optional = true, features = ["derive"] }
[dev-dependencies]
rand = "0.8"
serde_json = "1"
static_assertions = "1"
[features]
miri_action_log = []
serde = ["dep:serde"]
full = ["serde"]
loom = ["dep:loom"]