[package]
edition = "2021"
rust-version = "1.81"
name = "limen-runtime"
version = "0.1.0-alpha.1"
authors = ["Arlo Louis Byrne (idky137) <arlo@umbriel-systems.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Limen runtime implementations and schedulers."
homepage = "https://github.com/umbriel-sys/limen"
documentation = "https://docs.rs/limen-runtime"
readme = "README.md"
keywords = [
"embedded",
"inference",
"runtime",
"no-std",
"graph",
]
categories = [
"embedded",
"no-std::no-alloc",
"science::robotics",
]
license = "Apache-2.0"
repository = "https://github.com/umbriel-sys/limen"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
alloc = ["limen-core/alloc"]
default = []
std = [
"alloc",
"limen-core/std",
]
[lib]
name = "limen_runtime"
path = "src/lib.rs"
[dependencies.limen-core]
version = "0.1.0-alpha.1"
default-features = false