-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a proc_macro component to serde_with
A proc_macro is required to implement skip_serializing_null from dtolnay/request-for-implementation#18
- Loading branch information
Showing
3 changed files
with
26 additions
and
0 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,3 +1,8 @@ | ||
[workspace] | ||
members = [ | ||
"serde_with_macros", | ||
] | ||
|
||
[package] | ||
name = "serde_with" | ||
version = "1.2.0" | ||
|
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[package] | ||
name = "serde_with_macros" | ||
version = "0.1.0" | ||
authors = ["jonasbb"] | ||
|
||
description = "proc-macro library for serde_with" | ||
documentation = "https://docs.rs/serde_with_macros/" | ||
repository = "https://github.com/jonasbb/serde_with/serde_with_macros" | ||
readme = "README.md" | ||
keywords = ["serde", "utilities", "serialization", "deserialization"] | ||
license = "MIT/Apache-2.0" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[badges] | ||
travis-ci = { repository = "jonasbb/serde_with", branch = "master" } | ||
codecov = { repository = "jonasbb/serde_with", branch = "master", service = "github" } | ||
maintenance = { status = "actively-developed" } | ||
|
||
[dependencies] |
Empty file.