Skip to content

Commit 350bd2a

Browse files
chore(deps): bump the patch-updates group across 1 directory with 9 updates
Bumps the patch-updates group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [serde](https://github.com/serde-rs/serde) | `1.0.217` | `1.0.219` | | [serde_json](https://github.com/serde-rs/json) | `1.0.138` | `1.0.140` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.12` | `0.12.15` | | [clap](https://github.com/clap-rs/clap) | `4.5.27` | `4.5.34` | | [log](https://github.com/rust-lang/log) | `0.4.25` | `0.4.27` | | [syn](https://github.com/dtolnay/syn) | `2.0.98` | `2.0.100` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.93` | `1.0.94` | | [quote](https://github.com/dtolnay/quote) | `1.0.38` | `1.0.40` | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.95` | `1.0.97` | Updates `serde` from 1.0.217 to 1.0.219 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](serde-rs/serde@v1.0.217...v1.0.219) Updates `serde_json` from 1.0.138 to 1.0.140 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.138...v1.0.140) Updates `reqwest` from 0.12.12 to 0.12.15 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](seanmonstar/reqwest@v0.12.12...v0.12.15) Updates `clap` from 4.5.27 to 4.5.34 - [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.27...clap_complete-v4.5.34) Updates `log` from 0.4.25 to 0.4.27 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](rust-lang/log@0.4.25...0.4.27) Updates `syn` from 2.0.98 to 2.0.100 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](dtolnay/syn@2.0.98...2.0.100) Updates `proc-macro2` from 1.0.93 to 1.0.94 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](dtolnay/proc-macro2@1.0.93...1.0.94) Updates `quote` from 1.0.38 to 1.0.40 - [Release notes](https://github.com/dtolnay/quote/releases) - [Commits](dtolnay/quote@1.0.38...1.0.40) Updates `anyhow` from 1.0.95 to 1.0.97 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](dtolnay/anyhow@1.0.95...1.0.97) --- updated-dependencies: - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: proc-macro2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: quote dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-updates ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7c67a82 commit 350bd2a

File tree

5 files changed

+119
-50
lines changed

5 files changed

+119
-50
lines changed

Cargo.lock

+115-46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/github/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ anyhow = "1.0"
99
graphql_client = { path = "../../graphql_client", features = ["reqwest-blocking"] }
1010
reqwest = { version = "0.12", features = ["json", "blocking"] }
1111
prettytable-rs = "^0.10.0"
12-
clap = { version = "^4.0", features = ["derive"] }
12+
clap = { version = "^4.5", features = ["derive"] }
1313
log = "^0.4"
1414
env_logger = "0.10.2"

examples/hasura/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ graphql_client = { path = "../../graphql_client", features = ["reqwest-blocking"
1010
serde_json = "1.0"
1111
reqwest = { version = "0.12", features = ["json", "blocking"] }
1212
prettytable-rs = "0.10.0"
13-
log = "0.4.3"
13+
log = "0.4.27"
1414
env_logger = "0.10.2"

graphql_client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ rust-version.workspace = true
1616
features = ["reqwest"]
1717

1818
[dependencies]
19-
serde = { version = "^1.0.78", features = ["derive"] }
19+
serde = { version = "^1.0.219", features = ["derive"] }
2020
serde_json = "1.0"
2121

2222
# Optional dependencies

graphql_client_cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ path = "src/main.rs"
1515
reqwest = { version = "0.12", features = ["json", "blocking"] }
1616
graphql_client = { version = "0.14.0", path = "../graphql_client", default-features = false, features = ["graphql_query_derive", "reqwest-blocking"] }
1717
graphql_client_codegen = { path = "../graphql_client_codegen/", version = "0.14.0" }
18-
clap = { version = "^4.0", features = ["derive"] }
18+
clap = { version = "^4.5", features = ["derive"] }
1919
serde = { version = "^1.0", features = ["derive"] }
2020
serde_json = "^1.0"
2121
log = "^0.4"

0 commit comments

Comments
 (0)