mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 04:47:38 +03:00
Release 2.0.0
This commit is contained in:
parent
40113bd4b5
commit
6097d61b58
4 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "thiserror"
|
name = "thiserror"
|
||||||
version = "1.0.68"
|
version = "2.0.0"
|
||||||
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
||||||
categories = ["rust-patterns"]
|
categories = ["rust-patterns"]
|
||||||
description = "derive(Error)"
|
description = "derive(Error)"
|
||||||
|
@ -28,7 +28,7 @@ default = ["std"]
|
||||||
std = []
|
std = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
thiserror-impl = { version = "=1.0.68", path = "impl" }
|
thiserror-impl = { version = "=2.0.0", path = "impl" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
anyhow = "1.0.73"
|
anyhow = "1.0.73"
|
||||||
|
|
|
@ -13,7 +13,7 @@ This library provides a convenient derive macro for the standard library's
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
thiserror = "1.0"
|
thiserror = "2"
|
||||||
```
|
```
|
||||||
|
|
||||||
*Compiler support: requires rustc 1.61+*
|
*Compiler support: requires rustc 1.61+*
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "thiserror-impl"
|
name = "thiserror-impl"
|
||||||
version = "1.0.68"
|
version = "2.0.0"
|
||||||
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
authors = ["David Tolnay <dtolnay@gmail.com>"]
|
||||||
description = "Implementation detail of the `thiserror` crate"
|
description = "Implementation detail of the `thiserror` crate"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
|
@ -259,7 +259,7 @@
|
||||||
//! [`anyhow`]: https://github.com/dtolnay/anyhow
|
//! [`anyhow`]: https://github.com/dtolnay/anyhow
|
||||||
|
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![doc(html_root_url = "https://docs.rs/thiserror/1.0.68")]
|
#![doc(html_root_url = "https://docs.rs/thiserror/2.0.0")]
|
||||||
#![allow(
|
#![allow(
|
||||||
clippy::module_name_repetitions,
|
clippy::module_name_repetitions,
|
||||||
clippy::needless_lifetimes,
|
clippy::needless_lifetimes,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue