# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "neon-rtos" version = "0.1.4" build = false exclude = [ "target/**/*", "examples/**/target/**/*", ] include = [ "src/**/*", "Cargo.toml", "README.md", "LICENSE", "examples/**/*", ] autobins = false autoexamples = false autotests = false autobenches = false description = "A real-time operating system for ARM Cortex-M or RISC-V microcontrollers" readme = "README.md" license = "MIT OR Apache-2.0" repository = "https://github.com/mychenkaikai/neon-rtos" [profile.dev] opt-level = 0 debug = 2 [profile.release] opt-level = 3 [lib] name = "neon_rtos" path = "src/lib.rs" [dependencies.alloc-cortex-m] version = "0.4.4" optional = true [dependencies.cortex-m] version = "0.7.7" optional = true [dependencies.cortex-m-rt] version = "0.7.3" optional = true [dependencies.embedded-alloc] version = "0.6.0" optional = true [dependencies.riscv-rt] version = "0.12.2" optional = true [dependencies.spin] version = "0.9.8" optional = true [features] cortex_m3 = [ "cortex-m", "cortex-m-rt", "alloc-cortex-m", "spin", ] default = ["cortex_m3"] riscv = [ "riscv-rt", "embedded-alloc", ]