summaryrefslogtreecommitdiff
path: root/crates/slotmap-careful/Cargo.toml
blob: 586499afb4d8e4ddaf93ab1a330c9749fd15a534 (plain)
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
[package]
name = "slotmap-careful"
version = "0.7.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2024"
rust-version = "1.89"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Wrap the slotmap crate and prevent key reuse"
keywords = ["slotmap", "arena"]
categories = ["data-structures"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"

[dependencies]
paste = "1.0.3"
serde = "1.0"
slotmap = { version = "1.0.7", features = ["serde"] }
thiserror = "2"
void = "1"

[dev-dependencies]
serde_json = "1.0.50"

[features]
full = []

[package.metadata.docs.rs]
all-features = true