Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #26

Merged
merged 1 commit into from
Apr 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ darling_core = { version = "=0.3.2", path = "core" }
darling_macro = { version = "=0.3.2", path = "macro" }

[dev-dependencies]
syn = "0.12.10"
quote = "0.4"
quote = "0.5"
syn = "0.13"

[workspace]
members = ["macro", "core"]
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ default = ["syn/full"]

[dependencies]
ident_case = "1.0.0"
syn = { version = "0.12.10", features = ["extra-traits"] }
proc-macro2 = "0.2"
quote = "0.4"
proc-macro2 = "0.3"
quote = "0.5"
syn = { version = "0.13", features = ["extra-traits"] }
1 change: 1 addition & 0 deletions core/src/codegen/outer_from_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ fn compute_impl_bounds(bound: Path, mut generics: Generics) -> Generics {
}

let added_bound = TypeParamBound::Trait(TraitBound {
paren_token: None,
modifier: TraitBoundModifier::None,
lifetimes: None,
path: bound,
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ implementing custom derives. Use https://crates.io/crates/darling in your code.
license = "MIT"

[dependencies]
quote = "0.4"
syn = "0.12"
quote = "0.5"
syn = "0.13"
darling_core = { version = "=0.3.2", path = "../core" }

[lib]
Expand Down