blob: 3bd7cb3700e84bdecb577ce8d8e281ab3cdc7d91 (
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.8.1"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2024"
rust-version = "1.91"
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
|