| 1 | [package] |
| 2 | authors = [ |
| 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 | |
| 9 | description = "A heap allocator for embedded systems" |
| 10 | repository = "https://github.com/rust-embedded/embedded-alloc" |
| 11 | documentation = "https://docs.rs/embedded-alloc" |
| 12 | readme = "README.md" |
| 13 | edition = "2018" |
| 14 | |
| 15 | keywords = [ |
| 16 | "allocator" , |
| 17 | "embedded" , |
| 18 | "arm" , |
| 19 | "riscv" , |
| 20 | "cortex-m" , |
| 21 | ] |
| 22 | license = "MIT OR Apache-2.0" |
| 23 | name = "embedded-alloc" |
| 24 | version = "0.5.1" |
| 25 | |
| 26 | [features] |
| 27 | allocator_api = [] |
| 28 | |
| 29 | [dependencies] |
| 30 | critical-section = "1.0" |
| 31 | |
| 32 | [dependencies.linked_list_allocator] |
| 33 | default-features = false |
| 34 | version = "0.10.5" |
| 35 | |
| 36 | [dev-dependencies] |
| 37 | cortex-m = { version = "0.7.6" , features = ["critical-section-single-core" ] } |
| 38 | cortex-m-rt = "0.7" |
| 39 | cortex-m-semihosting = "0.5" |
| 40 | panic-semihosting = { version = "0.6" , features = ["exit" ] } |
| 41 | |