Skip to content

Commit

Permalink
Bump the all group with 7 updates
Browse files Browse the repository at this point in the history
Bumps the all group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.6.1` | `3.7.0` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.57` | `1.0.58` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.80` | `1.0.81` |
| [clap](https://github.com/clap-rs/clap) | `4.5.2` | `4.5.3` |
| [versions](https://github.com/fosskers/rs-versions) | `6.1.0` | `6.2.0` |
| [syn](https://github.com/dtolnay/syn) | `2.0.52` | `2.0.53` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.78` | `1.0.79` |


Updates `serde_with` from 3.6.1 to 3.7.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.6.1...v3.7.0)

Updates `thiserror` from 1.0.57 to 1.0.58
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.57...1.0.58)

Updates `anyhow` from 1.0.80 to 1.0.81
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.80...1.0.81)

Updates `clap` from 4.5.2 to 4.5.3
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.5.2...v4.5.3)

Updates `versions` from 6.1.0 to 6.2.0
- [Release notes](https://github.com/fosskers/rs-versions/releases)
- [Changelog](https://github.com/fosskers/rs-versions/blob/master/CHANGELOG.md)
- [Commits](fosskers/rs-versions@v6.1.0...v6.2.0)

Updates `syn` from 2.0.52 to 2.0.53
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.52...2.0.53)

Updates `proc-macro2` from 1.0.78 to 1.0.79
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.78...1.0.79)

---
updated-dependencies:
- dependency-name: serde_with
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: versions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Mar 18, 2024
1 parent 701c394 commit 3799563
Show file tree
Hide file tree
Showing 8 changed files with 57 additions and 51 deletions.
78 changes: 42 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions conjure_oxide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ uniplate_derive = {path = "../crates/uniplate_derive" }

serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
serde_with = "3.6.1"
thiserror = "1.0.57"
serde_with = "3.7.0"
thiserror = "1.0.58"
minion_rs = {path = "../solvers/minion" }
anyhow = "1.0.80"
clap = { version = "4.5.1", features = ["derive"] }
anyhow = "1.0.81"
clap = { version = "4.5.3", features = ["derive"] }
strum_macros = "0.26.2"
strum = "0.26.2"
versions = "6.1.0"
versions = "6.2.0"
linkme = "0.3.22"
walkdir = "2.5.0"
itertools = "0.12.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/conjure_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ edition = "2021"
[dependencies]
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
serde_with = "3.6.1"
serde_with = "3.7.0"
strum = "0.26.2"
strum_macros = "0.26.2"
thiserror = "1.0.57"
thiserror = "1.0.58"
derive_is_enum_variant = "0.1.1"
enum_compatability_macro = {path= "../enum_compatability_macro"}
uniplate = {path = "../uniplate"}
Expand Down
4 changes: 2 additions & 2 deletions crates/conjure_rules_proc_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ proc_macro = true
[dependencies]
quote = "1.0.34"
conjure_core = {path= "../conjure_core"}
syn = { version = "2.0.52", features = ["full"] }
proc-macro2 = "1.0.78"
syn = { version = "2.0.53", features = ["full"] }
proc-macro2 = "1.0.79"

[lints]
workspace = true
2 changes: 1 addition & 1 deletion crates/enum_compatability_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ proc_macro = true

[dependencies]
quote = "1.0.34"
syn = { version = "2.0.52", features = ["parsing","visit-mut","full"] }
syn = { version = "2.0.53", features = ["parsing","visit-mut","full"] }
itertools = "0.12"

[lints]
Expand Down
2 changes: 1 addition & 1 deletion crates/uniplate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MPL-2.0"
[lib]

[dependencies]
thiserror = "1.0.57"
thiserror = "1.0.58"

[lints]
workspace = true
4 changes: 2 additions & 2 deletions crates/uniplate_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ license = "MPL-2.0"
proc-macro = true

[dependencies]
proc-macro2 = "1.0.78"
syn = "2.0.52"
proc-macro2 = "1.0.79"
syn = "2.0.53"
quote = "1.0.35"
log = "0.4.21"
uniplate = {path = "../uniplate"}
Expand Down
4 changes: 2 additions & 2 deletions solvers/minion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.80"
thiserror = "1.0.57"
anyhow = "1.0.81"
thiserror = "1.0.58"

[build-dependencies]
bindgen = "0.69.4"
Expand Down

0 comments on commit 3799563

Please sign in to comment.