-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The problem with bad diagnostics appears to have been due to not being able to find the macro to emit compile errors.
- Loading branch information
Showing
10 changed files
with
19 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
[package] | ||
name = "derive_builder" | ||
version = "0.13.0" | ||
authors = ["Colin Kiegel <[email protected]>", | ||
"Pascal Hertleif <[email protected]>", | ||
"Jan-Erik Rediger <[email protected]>", | ||
"Ted Driggs <[email protected]>"] | ||
authors = [ | ||
"Colin Kiegel <[email protected]>", | ||
"Pascal Hertleif <[email protected]>", | ||
"Jan-Erik Rediger <[email protected]>", | ||
"Ted Driggs <[email protected]>", | ||
] | ||
edition = "2018" | ||
|
||
description = "Rust macro to automatically implement the builder pattern for arbitrary structs." | ||
repository = "https://github.com/colin-kiegel/rust-derive-builder" | ||
|
@@ -31,4 +34,4 @@ serde = { version = "1", features = ["derive"] } | |
serde_json = "1" | ||
|
||
[target.'cfg(compiletests)'.dev-dependencies] | ||
trybuild = "1.0.38" | ||
trybuild = "1.0.38" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ authors = [ | |
"Jan-Erik Rediger <[email protected]>", | ||
"Ted Driggs <[email protected]>", | ||
] | ||
|
||
edition = "2018" | ||
description = "Internal helper library for the derive_builder crate." | ||
repository = "https://github.com/colin-kiegel/rust-derive-builder" | ||
documentation = "https://docs.rs/derive_builder_core" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ authors = [ | |
"Jan-Erik Rediger <[email protected]>", | ||
"Ted Driggs <[email protected]>", | ||
] | ||
edition = "2018" | ||
|
||
description = "Rust macro to automatically implement the builder pattern for arbitrary structs." | ||
repository = "https://github.com/colin-kiegel/rust-derive-builder" | ||
|