You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
578 B
25 lines
578 B
[package]
|
|
name = "no-panic"
|
|
version = "0.1.15"
|
|
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Attribute macro to require that the compiler prove a function can't ever panic."
|
|
repository = "https://github.com/dtolnay/no-panic"
|
|
documentation = "https://docs.rs/no-panic"
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "1.0", features = ["full"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|