mirror of
https://github.com/eyre-rs/eyre.git
synced 2025-09-28 21:41:58 +00:00
25 lines
604 B
TOML
25 lines
604 B
TOML
[package]
|
|
name = "eyre"
|
|
version = "1.0.26" # 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/eyre"
|
|
documentation = "https://docs.rs/eyre"
|
|
readme = "README.md"
|
|
categories = ["rust-patterns"]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "dtolnay/eyre" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
[dev-dependencies]
|
|
futures = "0.3"
|
|
rustversion = "1.0"
|
|
thiserror = "1.0"
|
|
trybuild = { version = "1.0.19", features = ["diff"] }
|