Skip to content

Commit e8530de

Browse files
Bump the minor group across 1 directory with 7 updates (#7923)
* Bump the minor group across 1 directory with 7 updates Bumps the minor group with 7 updates in the /rust directory: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.40` | `4.5.41` | | [serde_json](https://github.com/serde-rs/json) | `1.0.140` | `1.0.141` | | [tokio](https://github.com/tokio-rs/tokio) | `1.46.1` | `1.47.0` | | [toml_edit](https://github.com/toml-rs/toml) | `0.22.27` | `0.23.2` | | [toml](https://github.com/toml-rs/toml) | `0.8.23` | `0.9.3` | | [winnow](https://github.com/winnow-rs/winnow) | `0.7.11` | `0.7.12` | | [criterion](https://github.com/bheisler/criterion.rs) | `0.6.0` | `0.7.0` | Updates `clap` from 4.5.40 to 4.5.41 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](clap-rs/clap@clap_complete-v4.5.40...clap_complete-v4.5.41) Updates `serde_json` from 1.0.140 to 1.0.141 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.140...v1.0.141) Updates `tokio` from 1.46.1 to 1.47.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.46.1...tokio-1.47.0) Updates `toml_edit` from 0.22.27 to 0.23.2 - [Commits](toml-rs/toml@v0.22.27...v0.23.2) Updates `toml` from 0.8.23 to 0.9.3 - [Commits](toml-rs/toml@toml-v0.8.23...toml-v0.9.3) Updates `winnow` from 0.7.11 to 0.7.12 - [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md) - [Commits](winnow-rs/winnow@v0.7.11...v0.7.12) Updates `criterion` from 0.6.0 to 0.7.0 - [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md) - [Commits](bheisler/criterion.rs@0.6.0...0.7.0) --- updated-dependencies: - dependency-name: clap dependency-version: 4.5.41 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: serde_json dependency-version: 1.0.141 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: tokio dependency-version: 1.47.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: toml_edit dependency-version: 0.23.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: toml dependency-version: 0.9.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: winnow dependency-version: 0.7.12 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: criterion dependency-version: 0.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor ... Signed-off-by: dependabot[bot] <[email protected]> * Trigger CI --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jonathan Tran <[email protected]>
1 parent f456ea2 commit e8530de

File tree

6 files changed

+69
-57
lines changed

6 files changed

+69
-57
lines changed

rust/Cargo.lock

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

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ debug = "line-tables-only"
3030
async-trait = "0.1.88"
3131
anyhow = { version = "1" }
3232
bson = { version = "2.15.0", features = ["uuid-1", "chrono"] }
33-
clap = { version = "4.5.40", features = ["derive"] }
33+
clap = { version = "4.5.41", features = ["derive"] }
3434
console_error_panic_hook = "0.1.7"
3535
dashmap = { version = "6.1.0" }
3636
http = "1"

rust/kcl-bumper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ anyhow = { workspace = true }
1919
clap = { workspace = true, features = ["derive"] }
2020
semver = "1.0.25"
2121
serde = { workspace = true }
22-
toml_edit = "0.22.27"
22+
toml_edit = "0.23.2"
2323

2424
[lints]
2525
workspace = true

rust/kcl-language-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ tracing-subscriber = { workspace = true }
3232

3333
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
3434
signal-hook = "0.3.18"
35-
tokio = { version = "1.46.1", features = ["full"] }
35+
tokio = { version = "1.47.0", features = ["full"] }
3636
tower-lsp = { version = "0.20.0", features = ["proposed"] }
3737

3838
[target.'cfg(target_arch = "wasm32")'.dependencies]

rust/kcl-lib/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ async-trait = { workspace = true }
2626
base64 = "0.22.1"
2727
bson = { workspace = true }
2828
chrono = "0.4.41"
29-
clap = { version = "4.5.40", default-features = false, optional = true, features = [
29+
clap = { version = "4.5.41", default-features = false, optional = true, features = [
3030
"std",
3131
"derive",
3232
] }
@@ -74,7 +74,7 @@ sha2 = "0.10.9"
7474
tabled = { version = "0.20.0", optional = true }
7575
tempfile = "3.20"
7676
thiserror = "2.0.0"
77-
toml = "0.8.23"
77+
toml = "0.9.3"
7878
ts-rs = { version = "11.0.1", features = [
7979
"uuid-impl",
8080
"url-impl",
@@ -129,15 +129,15 @@ tabled = ["dep:tabled"]
129129
[dev-dependencies]
130130
approx = "0.5"
131131
base64 = "0.22.1"
132-
criterion = { version = "0.6.0", features = ["async_tokio"] }
132+
criterion = { version = "0.7.0", features = ["async_tokio"] }
133133
expectorate = "1.2.0"
134134
handlebars = "6.3.2"
135135
image = { version = "0.25.6", default-features = false, features = ["png"] }
136136
insta = { version = "1.43.1", features = ["json", "filters", "redactions"] }
137137
kcl-directory-test-macro = { version = "0.1", path = "../kcl-directory-test-macro" }
138138
miette = { version = "7.6.0", features = ["fancy"] }
139139
pretty_assertions = "1.4.1"
140-
tokio = { version = "1.46.1", features = ["rt-multi-thread", "macros", "time"] }
140+
tokio = { version = "1.47.0", features = ["rt-multi-thread", "macros", "time"] }
141141
twenty-twenty = "0.8.2"
142142

143143
[lints]

rust/kcl-wasm-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ kittycad = { workspace = true }
2525
kittycad-modeling-cmds = { workspace = true }
2626
serde_json = { workspace = true }
2727
tokio = { workspace = true, features = ["sync", "rt"] }
28-
toml = "0.8.23"
28+
toml = "0.9.3"
2929
tower-lsp = { workspace = true, features = ["runtime-agnostic"] }
3030
uuid = { workspace = true, features = ["v4", "js", "serde"] }
3131
wasm-bindgen = "0.2.99"

0 commit comments

Comments
 (0)