Skip to content

Commit

Permalink
Update dependencies and disable unneeded syn feature (#3)
Browse files Browse the repository at this point in the history
* Update dependencies and disable unneeded syn feature

* Update syn dependency for required features only

Only depend on the required derive, parsing and proc-macro features from
syn.

Prefer to depend on minor versions, rather than patches.
  • Loading branch information
mehcode authored and Juici committed Nov 4, 2019
1 parent 1fee2db commit 0afdc76
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions wchar-impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ license = "MIT"
proc-macro = true

[dependencies]
proc-macro2 = "0.4"
proc-macro2 = "1.0"
proc-macro-hack = "0.5"
quote = "0.6"
syn = { version = "0.15", features = ["full"] }
quote = "1.0"

[dependencies.syn]
version = "1.0"
default-features = false
features = ["derive", "parsing", "proc-macro"]

0 comments on commit 0afdc76

Please sign in to comment.