• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "no-panic"
3version = "0.1.15"
4authors = ["David Tolnay <dtolnay@gmail.com>"]
5edition = "2018"
6license = "MIT OR Apache-2.0"
7description = "Attribute macro to require that the compiler prove a function can't ever panic."
8repository = "https://github.com/dtolnay/no-panic"
9documentation = "https://docs.rs/no-panic"
10readme = "README.md"
11
12[lib]
13proc-macro = true
14
15[dependencies]
16proc-macro2 = "1.0"
17quote = "1.0"
18syn = { version = "1.0", features = ["full"] }
19
20[dev-dependencies]
21tempfile = "3.0"
22
23[package.metadata.docs.rs]
24targets = ["x86_64-unknown-linux-gnu"]
25