Skip to content

Commit c6adda6

Browse files
committed
Update rust dependencies
1 parent 7cbf385 commit c6adda6

File tree

6 files changed

+93
-27
lines changed

6 files changed

+93
-27
lines changed

Cargo.lock

Lines changed: 83 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

benchmarks/compilation/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ version = "0.1.0"
1515
bon = { path = "../../bon", optional = true, features = ["experimental-overwritable"] }
1616
cfg-if = "1.0"
1717
derive_builder = { version = "0.20", optional = true }
18-
typed-builder = { version = "0.22", optional = true }
18+
typed-builder = { version = "0.23", optional = true }
1919

2020
[lints]
2121
workspace = true

benchmarks/runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ bon = { path = "../../bon" }
3535
cfg-if = "1.0"
3636

3737
[dev-dependencies]
38-
criterion = "0.7"
38+
criterion = "0.8"
3939
gungraun = "0.17"

bon-macros/Cargo.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,12 @@ workspace = true
3939
proc-macro = true
4040

4141
[dependencies]
42-
43-
# Patch version 0.20.7 of darling added `flatten` feature. We use it, so we
44-
# need to specify an explicit patch version requirement
45-
darling = "0.21.0"
42+
# Darling `0.23` updated MSRV to `1.88+` without other code changes.
43+
# Therefore, it should be compatible with `0.22` as well.
44+
#
45+
# Version `0.20` is the version of `darling` available in Debian packages:
46+
# https://salsa.debian.org/rust-team/debcargo-conf. We keep support for it.
47+
darling = ">=0.20.0, <0.24.0"
4648

4749
# This dependency is used by `darling` itself, so we use it as well for case
4850
# conversions to share the same dependency.

bon-sandbox/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ workspace = true
3131
[dependencies]
3232
buildstructor = "0.6"
3333
derive_builder = "0.20"
34-
typed-builder = "0.22"
34+
typed-builder = "0.23"
3535

3636
[dependencies.bon]
3737
features = ["experimental-overwritable"]

website/doctests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bon = { path = "../../bon", features = ["experimental-overwrit
1717
buildstructor = "0.6"
1818
macro_rules_attribute = "0.2"
1919
tokio = { version = "1.47", features = ["macros", "rt-multi-thread"] }
20-
typed-builder = "0.22"
20+
typed-builder = "0.23"
2121

2222
[build-dependencies]
2323
itertools = "0.14"

0 commit comments

Comments
 (0)