-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathCargo.toml
29 lines (25 loc) · 811 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
[package]
name = "anyhow"
version = "1.0.40" # remember to update html_root_url
authors = ["David Tolnay <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Flexible concrete Error type built on std::error::Error"
repository = "https://github.com/dtolnay/anyhow"
documentation = "https://docs.rs/anyhow"
readme = "README.md"
categories = ["rust-patterns"]
[features]
default = ["std"]
std = []
[dependencies]
backtrace = { version = "0.3", optional = true }
[dev-dependencies]
futures = { version = "0.3", default-features = false }
rustversion = "1.0"
syn = { version = "1.0", features = ["full"] }
thiserror = "1.0"
trybuild = { version = "1.0.19", features = ["diff"] }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--cfg", "doc_cfg"]