Skip to content

Commit

Permalink
Update all dependencies to latest
Browse files Browse the repository at this point in the history
For `darling`, this will improve errors.
The other bumps are motivated by hygiene.
  • Loading branch information
TedDriggs committed Jan 13, 2021
1 parent c86f615 commit ee13c51
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion derive_builder/CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [0.10.0-alpha] - 2021-01-13
- Requires Rust 1.40.0 or newer (was 1.37.0) #169
- Logging feature is removed #177
- Type parameters no longer have the `Default` bound #178
Expand Down
6 changes: 3 additions & 3 deletions derive_builder/Cargo.toml
Expand Up @@ -25,6 +25,6 @@ derive_builder_macro = { version = "=0.10.0-alpha", path = "../derive_builder_ma
derive_builder_core = { version = "=0.10.0-alpha", path = "../derive_builder_core" }

[dev-dependencies]
pretty_assertions = "0.6"
rustversion = "1"
trybuild = "1"
pretty_assertions = "0.6.1"
rustversion = "1.0.4"
trybuild = "1.0.38"
10 changes: 5 additions & 5 deletions derive_builder_core/Cargo.toml
Expand Up @@ -17,10 +17,10 @@ readme = "README.md"
clippy = []

[dependencies]
darling = "0.10.2"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["full", "extra-traits"] }
darling = "0.12.0"
proc-macro2 = "1.0.24"
quote = "1.0.8"
syn = { version = "1.0.58", features = ["full", "extra-traits"] }

[dev-dependencies]
pretty_assertions = "0.6"
pretty_assertions = "0.6.1"
2 changes: 1 addition & 1 deletion derive_builder_macro/Cargo.toml
Expand Up @@ -22,5 +22,5 @@ proc-macro = true
clippy = ["derive_builder_core/clippy"]

[dependencies]
syn = { version = "1", features = ["full", "extra-traits"] }
syn = { version = "1.0.58", features = ["full", "extra-traits"] }
derive_builder_core = { version = "=0.10.0-alpha", path = "../derive_builder_core" }

0 comments on commit ee13c51

Please sign in to comment.