-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 731 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 731 Bytes
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
[package]
name = "wordvec"
version = "0.2.0"
edition = "2024"
authors = ["SOFe <sofe2038@gmail.com>"]
license = "MIT"
description = "A compact `SmallVec<T>`-like container with only `align_of::<T>()` overhead for small stack-only instances."
categories = ["data-structures", "no-std"]
repository = "https://github.com/SOF3/wordvec"
[features]
default = []
serde = ["dep:serde"]
[dependencies]
serde = {version = "1.0", optional = true, default-features = false}
[dev-dependencies]
criterion = "0.5.1"
iai = {git = "https://github.com/sigaloid/iai", rev = "d56a597"}
paste = "1.0.15"
smallvec = "1.15.0"
thin-vec = "0.2.14"
serde_json = "1.0"
[[bench]]
name = "criterion"
harness = false
[[bench]]
name = "iai"
harness = false