blob: 9aaafa3074ecea16e9bcc071b774a377c817661e (
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.2.0"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2021"
rust-version = "1.77"
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 = "1"
void = "1"
[dev-dependencies]
serde_json = "1.0.50"
[features]
full = []
|