-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 813 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 813 Bytes
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
[package]
name = "dontpanic"
description = "Get instant notifications about any panic!(); in your codebase."
version = "0.6.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Peter Todorov <ptodorov@cytec.bg>"]
documentation = "https://docs.rs/dontpanic"
repository = "https://github.com/peterprototypes/dontpanic"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[features]
log = ["dep:log"]
tracing = ["dep:tracing", "dep:tracing-subscriber"]
[dependencies]
ureq = { version = "2.9", features = ["json"] }
log = { version = "0.4", optional = true, features = ["std"] }
tracing = { version = "0.1", optional = true }
tracing-subscriber = { version = "0.3", optional = true }
[dependencies.ring-channel]
version = "0.12"
default-features = false
features = ["std"]