-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
83 lines (77 loc) · 1.93 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
[package]
name = "copse"
version = "0.4.1"
license = "MIT OR Apache-2.0"
repository = "https://github.com/eggyal/copse.git"
description = "Direct ports of the standard library's BTreeMap, BTreeSet and BinaryHeap collections, but that sort according to a specified total order rather than the `Ord` trait"
edition = "2021"
keywords = ["b-tree", "collections", "binary-heap", "runtime"]
categories = ["data-structures", "no-std"]
[features]
allocator_api = []
btreemap_alloc = ["allocator_api"]
core_intrinsics = []
dropck_eyepatch = []
error_in_core = []
exact_size_is_empty = []
exclusive_range_pattern = []
extend_one = []
hasher_prefixfree_extras = []
inline_const = []
inplace_iteration = []
is_sorted = []
maybe_uninit_slice = []
new_uninit = []
rustc_attrs = []
slice_ptr_get = []
specialization = []
trusted_len = []
nightly = [
"allocator_api",
"btreemap_alloc",
"core_intrinsics",
"dropck_eyepatch",
"error_in_core",
"exact_size_is_empty",
"exclusive_range_pattern",
"extend_one",
"hasher_prefixfree_extras",
"inline_const",
"inplace_iteration",
"is_sorted",
"maybe_uninit_slice",
"new_uninit",
"rustc_attrs",
"slice_ptr_get",
"specialization",
"trusted_len",
]
binary_heap_as_slice = []
binary_heap_drain_sorted = []
binary_heap_into_iter_sorted = []
binary_heap_retain = []
btree_cursors = []
btree_drain_filter = []
const_btree_len = []
const_btree_new = ["const_btree_len"]
map_try_insert = []
unstable = [
"binary_heap_as_slice",
"binary_heap_drain_sorted",
"binary_heap_into_iter_sorted",
"binary_heap_retain",
"btree_cursors",
"btree_drain_filter",
"const_btree_new",
"map_try_insert",
]
std = []
[dependencies]
cfg-if = "1.0.0"
rustversion = "1.0.11"
[dev-dependencies]
rand = { version = "0.8.5", default-features = false, features = ["alloc"] }
rand_xorshift = "0.3.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]