forked from rcore-os/buddy_system_allocator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 800 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
[package]
name = "buddy_system_allocator"
description = "A bare metal allocator that uses buddy system."
documentation = "https://docs.rs/buddy_system_allocator"
homepage = "https://github.com/rcore-os/buddy_system_allocator"
repository = "https://github.com/rcore-os/buddy_system_allocator"
keywords = ["allocator", "no_std", "heap"]
version = "0.10.0"
authors = [
"Jiajie Chen <[email protected]>",
"Vinay Chandra Dommeti <[email protected]>",
"Andrew Walbran <[email protected]>",
]
edition = "2021"
license = "MIT"
[features]
default = ["alloc", "use_spin"]
alloc = []
use_spin = ["spin"]
[dependencies.spin]
version = "0.9.8"
optional = true
[dev-dependencies]
criterion = "0.5.1"
ctor = "0.2.6"
rand = "0.8.5"
rand_chacha = "0.3.1"
[[bench]]
name = "memory_allocator_benchmark"
harness = false