forked from esp-rs/esp-alloc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 931 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
35
36
[package]
name = "esp-alloc"
version = "0.1.0"
authors = [
"Björn Quentin <[email protected]>",
"Jesse Braham <[email protected]>",
]
edition = "2021"
description = "A heap allocator for Espressif devices"
repository = "https://github.com/esp-rs/esp-alloc"
license = "MIT OR Apache-2.0"
keywords = [
"allocator",
"esp32",
"riscv",
"xtensa",
]
categories = [
"memory-management",
"no-std",
]
[package.metadata.docs.rs]
default-target = "riscv32imc-unknown-none-elf"
[dependencies]
critical-section = "1.1.0"
linked_list_allocator = { version = "0.10.3", default-features = false, features = ["const_mut_refs"] }
[features]
# Provides a basic `#[alloc_error_handler]` which simply panics when an
# allocation fails. If this feature is NOT enabled, which it is not by
# default, then a handler needs to be defined in any binary depending on
# this package.
oom-handler = []