Skip to content

Commit

Permalink
Add a proc_macro component to serde_with
Browse files Browse the repository at this point in the history
A proc_macro is required to implement skip_serializing_null from
dtolnay/request-for-implementation#18
  • Loading branch information
jonasbb committed Mar 18, 2019
1 parent a05488a commit 41817e5
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Cargo.toml
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"
Expand Down
21 changes: 21 additions & 0 deletions serde_with_macros/Cargo.toml
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 added serde_with_macros/src/lib.rs
Empty file.

0 comments on commit 41817e5

Please sign in to comment.