Skip to content

Commit

Permalink
Merge pull request #102 from andreafioraldi/master
Browse files Browse the repository at this point in the history
Add no_std compatibility
  • Loading branch information
idanarye committed Jul 10, 2023
2 parents 60a3cbb + 6ec25b9 commit 2562445
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#![no_std]

use core::ops::FnOnce;

/// `TypedBuilder` is not a real type - deriving it will generate a `::builder()` method on your
/// struct that will return a compile-time checked builder. Set the fields using setters with the
/// same name as the struct's fields and call `.build()` when you are done to create your object.
Expand Down

0 comments on commit 2562445

Please sign in to comment.