1[package]
2authors = [
3 "The Cortex-M Team <cortex-m@teams.rust-embedded.org>",
4 "Jonathan Pallant <github@thejpster.org.uk>",
5 "Jorge Aparicio <jorge@japaric.io>",
6 "Sébastien Béchet <sebastien.bechet@osinix.com>",
7]
8
9description = "A heap allocator for embedded systems"
10repository = "https://github.com/rust-embedded/embedded-alloc"
11documentation = "https://docs.rs/embedded-alloc"
12readme = "README.md"
13edition = "2018"
14
15keywords = [
16 "allocator",
17 "embedded",
18 "arm",
19 "riscv",
20 "cortex-m",
21]
22license = "MIT OR Apache-2.0"
23name = "embedded-alloc"
24version = "0.5.1"
25
26[features]
27allocator_api = []
28
29[dependencies]
30critical-section = "1.0"
31
32[dependencies.linked_list_allocator]
33default-features = false
34version = "0.10.5"
35
36[dev-dependencies]
37cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
38cortex-m-rt = "0.7"
39cortex-m-semihosting = "0.5"
40panic-semihosting = { version = "0.6", features = ["exit"] }
41