Skip to content

Commit b21ec45

Browse files
committed
syn: remove :: prefix to crate name
1 parent 9df72f6 commit b21ec45

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

syn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "amplify_syn"
3-
version = "2.0.0-beta.2"
3+
version = "2.0.0-beta.3"
44
description = "Amplifying syn capabilities: helper functions for creating proc macro libraries"
55
authors = ["Dr. Maxim Orlovsky <orlovsky@pandoracore.com>"]
66
keywords = ["generics", "derive", "wrap", "patterns"]

syn/src/data.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ impl DataType {
287287
}?;
288288

289289
let tokens = quote! {
290-
impl #impl_generics ::#trait_crate::#trait_name for #ident_name #ty_generics #where_clause {
290+
impl #impl_generics #trait_crate::#trait_name for #ident_name #ty_generics #where_clause {
291291
#inner
292292
}
293293
};

0 commit comments

Comments
 (0)