forked from rust-embedded/embedded-alloc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 730 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 730 Bytes
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
[package]
authors = [
"The Cortex-M Team <cortex-m@teams.rust-embedded.org>",
"Jonathan Pallant <github@thejpster.org.uk>",
"Jorge Aparicio <jorge@japaric.io>",
"Sébastien Béchet <sebastien.bechet@osinix.com>",
]
description = "A heap allocator for Cortex-M processors"
repository = "https://github.com/rust-embedded/alloc-cortex-m"
documentation = "https://docs.rs/alloc-cortex-m"
readme = "README.md"
edition = "2018"
keywords = [
"allocator",
"arm",
"cortex-m",
]
license = "MIT OR Apache-2.0"
name = "alloc-cortex-m"
version = "0.4.0"
[dependencies]
cortex-m = "0.6.2"
[dependencies.linked_list_allocator]
default-features = false
version = "0.8.1"
[dev-dependencies]
cortex-m-rt = "0.6.12"