Skip to content

Commit

Permalink
cargo: printable to v2
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsonin committed May 16, 2024
1 parent 247334c commit deceb47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gset"
version = "1.0.3"
version = "1.0.4"
authors = ["Andrew Sonin <[email protected]>"]
description = "A procedural macro for generating the most basic getters and setters on fields."
categories = ["development-tools::procedural-macro-helpers"]
Expand All @@ -19,7 +19,7 @@ proc-macro = true
derive_more = "0.99"
lazy_format = "2"
quote = "1"
printable = "0.0.1"
printable = "2"
proc-macro-error = "1"
proc-macro2 = "1"
syn = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/field_attributes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ macro_rules! define_field_attributes
pub fn all_kinds() -> impl std::fmt::Display
{
use lazy_format::lazy_format;
use printable::AsPrintable;
use printable::prelude::PrintableIter;

Self::ALL_KINDS.iter()
.map(|kind| lazy_format!("`{kind}`"))
Expand Down

0 comments on commit deceb47

Please sign in to comment.