Fill in crates.io metadata

This commit is contained in:
David Tolnay 2019-10-09 11:05:07 -07:00
parent bba1013d3f
commit 7d26b19d07
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,11 @@ name = "thiserror"
version = "0.0.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "derive(Error)"
repository = "https://github.com/dtolnay/thiserror"
documentation = "https://docs.rs/thiserror"
readme = "README.md"
[dependencies]
thiserror-impl = { version = "0.0", path = "impl" }

View File

@ -3,6 +3,9 @@ name = "thiserror-impl"
version = "0.0.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Implementation detail of the `thiserror` crate"
repository = "https://github.com/dtolnay/thiserror"
[lib]
proc-macro = true