-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
64 lines (51 loc) · 1.1 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "any_vec"
authors = ["Andrey Diduh <[email protected]>"]
license = "MIT OR Apache-2.0"
version = "0.14.0"
edition = "2021"
description = "Type erased vector. Most operations can be done without type knowledge. Mostly zero overhead."
repository = "https://github.com/tower120/any_vec"
keywords = ["vec", "any", "container", "type-erasure", "no_std"]
categories = ["data-structures", "no-std", "no-std::no-alloc"]
exclude = [".github"]
[features]
default = ["alloc"]
# Include alloc crate. This allows using mem::Heap.
alloc = []
[package.metadata.docs.rs]
features = []
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
[dev-dependencies]
itertools = "0.12.1"
criterion = "0.5.1"
rand = "0.8.5"
impls = "1.0.3"
[[bench]]
name = "insert"
harness = false
[[bench]]
name = "push"
harness = false
[[bench]]
name = "remove"
harness = false
[[bench]]
name = "swap_remove"
harness = false
[[bench]]
name = "drain"
harness = false
[[bench]]
name = "iter"
harness = false
[[bench]]
name = "element_clone"
harness = false
[[bench]]
name = "clone"
harness = false
[[bench]]
name = "raw_parts"
harness = false