mirror of
https://github.com/eyre-rs/eyre.git
synced 2025-09-28 13:31:29 +00:00
25 lines
641 B
TOML
25 lines
641 B
TOML
[package]
|
|
name = "eyre"
|
|
version = "0.3.8" # remember to update html_root_url
|
|
authors = ["David Tolnay <dtolnay@gmail.com>", "Jane Lusby <jlusby42@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Flexible concrete Error Handling and Reporting type built on std::error::Error"
|
|
repository = "https://github.com/yaahc/eyre"
|
|
documentation = "https://docs.rs/eyre"
|
|
readme = "README.md"
|
|
categories = ["rust-patterns"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
[dev-dependencies]
|
|
futures = "0.3"
|
|
rustversion = "1.0"
|
|
thiserror = "1.0"
|
|
trybuild = { version = "1.0.19", features = ["diff"] }
|
|
|
|
[dependencies]
|
|
indenter = "^0.1.1"
|