1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "critical-section" 15version = "1.2.0" 16build = false 17autolib = false 18autobins = false 19autoexamples = false 20autotests = false 21autobenches = false 22description = "Cross-platform critical section" 23readme = "README.md" 24categories = [ 25 "embedded", 26 "no-std", 27 "concurrency", 28] 29license = "MIT OR Apache-2.0" 30repository = "https://github.com/rust-embedded/critical-section" 31 32[lib] 33name = "critical_section" 34path = "src/lib.rs" 35 36[features] 37restore-state-bool = [] 38restore-state-none = [] 39restore-state-u16 = [] 40restore-state-u32 = [] 41restore-state-u64 = [] 42restore-state-u8 = [] 43restore-state-usize = [] 44std = ["restore-state-bool"] 45