thiserror-nostd-notrait/Cargo.toml

29 lines
726 B
TOML
Raw Normal View History

2019-10-08 23:18:38 -07:00
[package]
name = "thiserror"
2024-01-01 20:25:58 -08:00
version = "1.0.55"
2019-10-08 23:18:38 -07:00
authors = ["David Tolnay <dtolnay@gmail.com>"]
2022-07-31 19:19:06 -07:00
categories = ["rust-patterns"]
2019-10-09 11:05:07 -07:00
description = "derive(Error)"
documentation = "https://docs.rs/thiserror"
2023-07-06 14:39:58 -07:00
edition = "2021"
2022-08-02 10:38:57 -07:00
keywords = ["error", "error-handling", "derive"]
2022-07-31 19:19:06 -07:00
license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/thiserror"
2023-03-13 11:15:43 -07:00
rust-version = "1.56"
[dependencies]
2024-01-01 20:25:58 -08:00
thiserror-impl = { version = "=1.0.55", path = "impl" }
2019-10-09 07:26:23 -07:00
[dev-dependencies]
anyhow = "1.0.73"
2023-07-04 12:28:04 -07:00
ref-cast = "1.0.18"
rustversion = "1.0.13"
trybuild = { version = "1.0.81", features = ["diff"] }
2019-10-09 10:24:50 -07:00
[workspace]
members = ["impl"]
2020-03-17 13:27:37 -07:00
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]