-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
41 lines (34 loc) · 1.06 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
[package]
name = "blink-alloc"
version = "0.3.1"
edition = "2018"
authors = ["Zakarum <zaq.dev@icloud.com>"]
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/blink-alloc"
homepage = "https://github.com/zakarumych/blink-alloc"
repository = "https://github.com/zakarumych/blink-alloc"
readme = "README.md"
description = "Fast, concurrent, arena-based allocator with drop support"
keywords = ["allocator", "arena", "concurrent", "drop", "no-std"]
categories = ["memory-management", "no-std"]
[features]
nightly = ["allocator-api2/nightly", "bumpalo/allocator_api"]
alloc = ["allocator-api2/alloc"]
std = ["alloc", "allocator-api2/std"]
sync = ["parking_lot", "std"]
default = ["std"]
[dependencies]
parking_lot = { version = "0.12", optional = true }
allocator-api2 = { version = "0.2.8", default-features = false }
[dev-dependencies]
criterion = "0.4"
bumpalo = "3.7"
[[bench]]
name = "bench"
harness = false
required-features = ["alloc", "sync", "nightly"]
[[example]]
name = "global"
required-features = ["std", "sync"]
[package.metadata.docs.rs]
all-features = true