mirror of
https://github.com/eyre-rs/eyre.git
synced 2025-09-28 13:31:29 +00:00
46 lines
1.3 KiB
TOML
46 lines
1.3 KiB
TOML
[package]
|
|
name = "eyre"
|
|
version = "1.0.0"
|
|
authors = ["David Tolnay <dtolnay@gmail.com>", "Jane Lusby <jlusby42@gmail.com>"]
|
|
description = "Flexible concrete Error Reporting type built on std::error::Error with customizable Reports"
|
|
documentation = "https://docs.rs/eyre"
|
|
categories = ["rust-patterns"]
|
|
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
readme = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
[features]
|
|
default = ["anyhow", "auto-install", "track-caller"]
|
|
anyhow = []
|
|
auto-install = []
|
|
track-caller = []
|
|
|
|
[dependencies]
|
|
indenter = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
pyo3 = { version = "0.24.0", optional = true, default-features = false }
|
|
|
|
[build-dependencies]
|
|
autocfg = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
futures = { version = "0.3", default-features = false }
|
|
rustversion = "1.0"
|
|
thiserror = "1.0"
|
|
trybuild = { version = "=1.0.89", features = ["diff"] } # pinned due to MSRV
|
|
backtrace = "0.3.46"
|
|
anyhow = "1.0.28"
|
|
syn = { version = "2.0", features = ["full"] }
|
|
pyo3 = { version = "0.24", default-features = false, features = ["auto-initialize"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
rustdoc-args = ["--cfg", "doc_cfg"]
|
|
|
|
[package.metadata.workspaces]
|
|
independent = true
|
|
|