• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "buddy_system_allocator"
3description = "A bare metal allocator that uses buddy system."
4documentation = "https://docs.rs/buddy_system_allocator"
5homepage = "https://github.com/rcore-os/buddy_system_allocator"
6repository = "https://github.com/rcore-os/buddy_system_allocator"
7keywords = ["allocator", "no_std", "heap"]
8version = "0.9.0"
9authors = ["Jiajie Chen <c@jia.je>", "Vinay Chandra Dommeti <github@vinay.vc>", "Andrew Walbran <qwandor@google.com>"]
10edition = "2021"
11license = "MIT"
12
13[features]
14default = ["use_spin"]
15use_spin = ["spin"]
16const_fn = []
17
18[dependencies.spin]
19version = "0.9.3"
20optional = true
21
22[dev-dependencies]
23criterion = "0.3"
24ctor = "0.1.23"
25rand = "0.8.5"
26rand_chacha = "0.3.1"
27
28[[bench]]
29name = "memory_allocator_benchmark"
30harness = false
31