-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (30 loc) · 863 Bytes
/
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
[package]
name = "btree-vec"
version = "0.3.2-dev"
edition = "2021"
rust-version = "1.60"
description = "A growable array (vector) implemented using a B-tree"
documentation = "https://docs.rs/btree-vec"
readme = "misc/crate-readme.md"
repository = "https://github.com/taylordotfish/btree-vec"
license = "GPL-3.0-or-later"
keywords = ["b-tree", "vec", "vector", "array"]
categories = ["data-structures", "no-std"]
[features]
allocator_api = ["allocator-fallback?/allocator_api"]
dropck_eyepatch = ["add-syntax"]
[dependencies]
tagged-pointer = "0.2.4"
[dependencies.add-syntax]
version = "0.1"
optional = true
[dependencies.allocator-fallback]
version = "0.1.7"
default-features = false
optional = true
[build-dependencies.allocator-fallback]
version = "0.1.7"
default-features = false
optional = true
[package.metadata.docs.rs]
features = ["allocator_api"]