forked from rust-cli/human-panic
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (30 loc) · 837 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "human-panic"
version = "1.0.4-alpha.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/yoshuawuyts/human-panic"
homepage = "https://github.com/yoshuawuyts/human-panic"
documentation = "https://docs.rs/human-panic"
description = "Panic messages for humans"
authors = ["Yoshua Wuyts <[email protected]>",
"Pascal Hertleif <[email protected]>",
"Katharina Fey <[email protected]>"]
readme = "README.md"
edition = "2018"
[package.metadata.docs.rs]
features = ["nightly"]
[dependencies]
termcolor = "1.0.4"
uuid = { version = "0.8.0", features = ["v4"], default-features = false }
serde_derive = "1.0.79"
toml = "0.5.0"
serde = "1.0.79"
os_info = "2.0.6"
backtrace = "0.3.9"
[features]
nightly = []
[workspace]
members = [
"tests/single-panic",
"tests/custom-panic",
]