mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Update to 2021 edition
This commit is contained in:
parent
281997e760
commit
43f3a2a661
3 changed files with 2 additions and 3 deletions
|
@ -5,7 +5,7 @@ authors = ["David Tolnay <dtolnay@gmail.com>"]
|
||||||
categories = ["rust-patterns"]
|
categories = ["rust-patterns"]
|
||||||
description = "derive(Error)"
|
description = "derive(Error)"
|
||||||
documentation = "https://docs.rs/thiserror"
|
documentation = "https://docs.rs/thiserror"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
keywords = ["error", "error-handling", "derive"]
|
keywords = ["error", "error-handling", "derive"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
repository = "https://github.com/dtolnay/thiserror"
|
repository = "https://github.com/dtolnay/thiserror"
|
||||||
|
|
|
@ -3,7 +3,7 @@ name = "thiserror-impl"
|
||||||
version = "1.0.41"
|
version = "1.0.41"
|
||||||
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 = "2018"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
repository = "https://github.com/dtolnay/thiserror"
|
repository = "https://github.com/dtolnay/thiserror"
|
||||||
rust-version = "1.56"
|
rust-version = "1.56"
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
use proc_macro2::{Delimiter, Group, Span, TokenStream, TokenTree};
|
use proc_macro2::{Delimiter, Group, Span, TokenStream, TokenTree};
|
||||||
use quote::{format_ident, quote, ToTokens};
|
use quote::{format_ident, quote, ToTokens};
|
||||||
use std::collections::BTreeSet as Set;
|
use std::collections::BTreeSet as Set;
|
||||||
use std::iter::FromIterator;
|
|
||||||
use syn::parse::ParseStream;
|
use syn::parse::ParseStream;
|
||||||
use syn::{
|
use syn::{
|
||||||
braced, bracketed, parenthesized, token, Attribute, Error, Ident, Index, LitInt, LitStr, Meta,
|
braced, bracketed, parenthesized, token, Attribute, Error, Ident, Index, LitInt, LitStr, Meta,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue