-
Notifications
You must be signed in to change notification settings - Fork 59
/
Cargo.toml
119 lines (94 loc) · 1.89 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[package]
name = "rpds"
description = "Persistent data structures with structural sharing"
version = "0.12.0"
authors = ["Diogo Sousa <[email protected]>"]
edition = "2021"
rust-version = "1.56.0"
homepage = "https://github.com/orium/rpds"
repository = "https://github.com/orium/rpds"
documentation = "https://docs.rs/rpds"
readme = "README.md"
keywords = [
"data-structure",
"data-structures",
"persistent",
"immutable",
"no_std"
]
categories = [
"data-structures",
]
license = "MPL-2.0"
# What to include when packaging.
include = [
"/src/**/*.rs",
"/benches/**/*.rs",
"/Cargo.toml",
"/LICENSE.md",
"/README.md",
"/release-notes.md",
]
[badges]
codecov = { repository = "orium/rpds", branch = "master", service = "github" }
[dependencies]
archery = "0.4.0"
serde = { version = "1.0.136", optional = true, default-features = false }
[dev-dependencies]
criterion = "0.3.5"
rand = "0.8.4"
# Needed to test serde:
bincode = "1.3.3"
pretty_assertions = "1.0.0"
static_assertions = "1.1.0"
[features]
default = ["std"]
fatal-warnings = []
std = []
[package.metadata.docs.rs]
features = ["serde"]
[[bench]]
name = "std_linked_list"
harness = false
[[bench]]
name = "rpds_list"
harness = false
[[bench]]
name = "rpds_list_sync"
harness = false
[[bench]]
name = "std_vec"
harness = false
[[bench]]
name = "rpds_queue"
harness = false
[[bench]]
name = "rpds_queue_sync"
harness = false
[[bench]]
name = "std_vec_deque"
harness = false
[[bench]]
name = "rpds_vector"
harness = false
[[bench]]
name = "rpds_vector_sync"
harness = false
[[bench]]
name = "std_hash_map"
harness = false
[[bench]]
name = "rpds_hash_trie_map"
harness = false
[[bench]]
name = "rpds_hash_trie_map_sync"
harness = false
[[bench]]
name = "std_btree_map"
harness = false
[[bench]]
name = "rpds_red_black_tree_map"
harness = false
[[bench]]
name = "rpds_red_black_tree_map_sync"
harness = false