eyre/Cargo.toml
2020-03-14 13:36:20 -07:00

25 lines
652 B
TOML

[package]
name = "anyhow"
version = "1.0.27" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
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"]
[badges]
travis-ci = { repository = "dtolnay/anyhow" }
[features]
default = ["std"]
std = []
[dev-dependencies]
futures = { version = "0.3", default-features = false }
rustversion = "1.0"
thiserror = "1.0"
trybuild = { version = "1.0.19", features = ["diff"] }