1[package] 2name = "no-panic" 3version = "0.1.26" 4authors = ["David Tolnay <dtolnay@gmail.com>"] 5categories = ["no-std", "no-std::no-alloc"] 6description = "Attribute macro to require that the compiler prove a function can't ever panic." 7documentation = "https://docs.rs/no-panic" 8edition = "2021" 9license = "MIT OR Apache-2.0" 10repository = "https://github.com/dtolnay/no-panic" 11rust-version = "1.56" 12 13[lib] 14proc-macro = true 15 16[dependencies] 17proc-macro2 = "1.0.63" 18quote = "1.0.29" 19syn = { version = "2.0.23", features = ["full"] } 20 21[dev-dependencies] 22rustversion = "1.0.13" 23tempfile = "3.6" 24trybuild = { version = "1.0.81", features = ["diff"] } 25 26[package.metadata.docs.rs] 27targets = ["x86_64-unknown-linux-gnu"] 28rustdoc-args = ["--generate-link-to-definition"] 29 30[workspace] 31members = ["noexcept", "noexcept-impl"] 32