thiserror-nostd-notrait/Cargo.toml

27 lines
618 B
TOML
Raw Normal View History

2019-10-08 23:18:38 -07:00
[package]
name = "thiserror"
2021-08-28 14:18:20 -07:00
version = "1.0.27"
2019-10-08 23:18:38 -07:00
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
2019-10-09 11:05:07 -07:00
license = "MIT OR Apache-2.0"
description = "derive(Error)"
repository = "https://github.com/dtolnay/thiserror"
documentation = "https://docs.rs/thiserror"
2019-10-15 16:30:23 -07:00
categories = ["rust-patterns"]
2019-10-09 11:05:07 -07:00
readme = "README.md"
[dependencies]
2021-08-28 14:18:20 -07:00
thiserror-impl = { version = "=1.0.27", path = "impl" }
2019-10-09 07:26:23 -07:00
[dev-dependencies]
anyhow = "1.0"
2019-11-09 16:28:30 -08:00
ref-cast = "1.0"
2019-10-11 11:11:32 -07:00
rustversion = "1.0"
2019-12-25 14:42:24 -08:00
trybuild = { version = "1.0.19", 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"]