Skip to content
This repository has been archived by the owner on May 2, 2021. It is now read-only.

Commit

Permalink
,,,,
Browse files Browse the repository at this point in the history
  • Loading branch information
jpernst committed May 1, 2021
1 parent 213671a commit 61188eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rental"
version = "0.5.5"
version = "0.5.6"
license = "MIT/Apache-2.0"
authors = ["Jameson Ernst <[email protected]>"]
description = "A macro to generate safe self-referential structs, plus premade types for common use cases."
Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ macro_rules! define_rental_traits {
#[allow(unused)]
#[derive(__rental_traits)]
enum ProceduralMasqueradeDummyType {
Input = (0, stringify!($max_arity)).0
Input = (0, stringify!($max_arity)).0,
}
};
}
Expand Down Expand Up @@ -238,7 +238,7 @@ macro_rules! rental {
#[allow(unused)]
#[derive(__rental_structs_and_impls)]
enum ProceduralMasqueradeDummyType {
Input = (0, stringify!($($body)*)).0
Input = (0, stringify!($($body)*)).0,
}
}
};
Expand All @@ -256,7 +256,7 @@ macro_rules! rental {
#[allow(unused)]
#[derive(__rental_structs_and_impls)]
enum ProceduralMasqueradeDummyType {
Input = (0, stringify!($($body)*)).0
Input = (0, stringify!($($body)*)).0,
}
}
};
Expand All @@ -274,7 +274,7 @@ macro_rules! rental {
#[allow(unused)]
#[derive(__rental_structs_and_impls)]
enum ProceduralMasqueradeDummyType {
Input = (0, stringify!($($body)*)).0
Input = (0, stringify!($($body)*)).0,
}
}
};
Expand Down

0 comments on commit 61188eb

Please sign in to comment.