[package]
edition = "2021"
name = "emcell"
version = "0.0.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reserve flash memory regions to safely keep multiple binary and library binaries (cells) on a microcontroller. The cells can call functions from other cells."
readme = "README.md"
keywords = [
"embedded",
"microcontroller",
"flash",
"memory",
]
categories = [
"embedded",
"no-std",
"memory-management",
]
license = "MIT"
repository = "https://github.com/skibon02/emcell"
[features]
build-rs = []
default = ["rt-crate-cortex-m-rt"]
rt-crate-cortex-m-rt = ["cortex-m"]
[lib]
name = "emcell"
path = "src/lib.rs"
test = false
bench = false
[dependencies.cortex-m]
version = "0.7.7"
optional = true