-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
43 lines (36 loc) · 1.05 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
43
[package]
name = "fixed-map"
version = "0.9.5"
authors = ["John-John Tedro <[email protected]>", "Peter Jaszkowiak <[email protected]>"]
edition = "2021"
rust-version = "1.72"
description = "A fixed map where storage layout is calculated by a procedural macro."
documentation = "https://docs.rs/fixed-map"
readme = "README.md"
homepage = "https://github.com/udoprog/fixed-map"
repository = "https://github.com/udoprog/fixed-map"
license = "MIT OR Apache-2.0"
keywords = ["container", "data-structure", "map", "no_std"]
categories = ["data-structures"]
[package.metadata.docs.rs]
all-features = true
[features]
default = ["hashbrown", "std"]
std = ["serde?/std"]
[dependencies]
fixed-map-derive = { version = "=0.9.5", path = "fixed-map-derive" }
hashbrown = { version = "0.13.2", optional = true }
serde = { version = "1.0.145", optional = true, default-features = false }
[dev-dependencies]
criterion = "0.4.0"
hashbrown = "0.13.2"
[[bench]]
name = "complex"
harness = false
[[bench]]
name = "simple"
harness = false
[workspace]
members = [
"fixed-map-derive"
]