summaryrefslogtreecommitdiff
path: root/crates/slotmap-careful/Cargo.toml
blob: d86cd42ab40326d88b4805a99064f43eb41a66b3 (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
[package]
name = "slotmap-careful"
version = "0.5.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2024"
rust-version = "1.86"
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"
serde = "1.0"
slotmap = { version = "1.0.7", features = ["serde"] }
thiserror = "2"
void = "1"

[dev-dependencies]
serde_json = "1.0.50"

[features]
full = []