Rename crate to anyhow

"Any" conveys an error type that can represent any error, and "how"
suggests how a function failed. 6 characters is in the ideal range for
crate name length. Both anyhow::Error and anyhow::Result are easy to
pronounce.
This commit is contained in:
David Tolnay 2019-10-05 15:53:58 -04:00
parent f972193a06
commit 31aedf1c9d
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -1,10 +1,10 @@
[package]
name = "however"
name = "anyhow"
version = "1.0.0-alpha.1"
authors = ["David Tolnay <dtolnay@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "A better Box<dyn Error>"
repository = "https://github.com/dtolnay/however"
documentation = "https://docs.rs/however"
repository = "https://github.com/dtolnay/anyhow"
documentation = "https://docs.rs/anyhow"
readme = "README.md"