-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 874 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 874 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
29
30
31
32
33
[package]
name = "errors_with_context"
version = "1.2.0"
edition = "2024"
authors = ["Nora Struck <mail@nora.computer>"]
license = "MIT"
description = "Application-ending Errors with context"
readme = "Readme.md"
homepage = "https://github.com/AnyTimeTraveler/errors_with_context"
repository = "https://github.com/AnyTimeTraveler/errors_with_context"
keywords = ["error", "errors", "context"]
categories = ["development-tools::debugging"]
[features]
default = ["pretty_debug_errors"]
pretty_debug_errors = []
boolean_errors = []
send = []
[dependencies.serde]
version = "1.0.219"
optional = true
default-features = false
features = ["derive"]
[dev-dependencies]
serde = { version = "1.0.219", default-features = false, features = ["derive"] }
serde_json = "1.0.140"
# docs.rs-specific configuration
[package.metadata.docs.rs]
# document all features
all-features = true