Skip to content

Commit

Permalink
Merge pull request #318 from conjure-cp/dependabot/cargo/all-9abd618e6c
Browse files Browse the repository at this point in the history
build(deps): bump the all group across 1 directory with 22 updates
  • Loading branch information
ozgurakgun authored Jul 1, 2024
2 parents 309ab23 + ec48c58 commit ec6cf20
Show file tree
Hide file tree
Showing 9 changed files with 149 additions and 163 deletions.
230 changes: 108 additions & 122 deletions Cargo.lock

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions conjure_oxide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@ walkdir = "2.5.0"
conjure_core = { path = "../crates/conjure_core" }
uniplate = { git = "https://github.com/conjure-cp/conjure-oxide.git", rev = "0dc7090f0388d9a4fc0460d7d5fbf79da7854170" }
uniplate_derive = { git = "https://github.com/conjure-cp/conjure-oxide.git", rev = "0dc7090f0388d9a4fc0460d7d5fbf79da7854170" }
serde = { version = "1.0.199", features = ["derive"] }
serde_json = "1.0.116"
serde_with = "3.8.1"
thiserror = "1.0.59"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.119"
serde_with = "3.8.2"
thiserror = "1.0.61"
minion_rs = { path = "../solvers/minion" }
anyhow = "1.0.82"
clap = { version = "4.5.3", features = ["derive"] }
strum_macros = "0.26.2"
strum = "0.26.2"
versions = "6.2.0"
linkme = "0.3.22"
anyhow = "1.0.86"
clap = { version = "4.5.8", features = ["derive"] }
strum_macros = "0.26.4"
strum = "0.26.3"
versions = "6.3.0"
linkme = "0.3.27"
walkdir = "2.5.0"
regex = "1.10.3"
log = "0.4.21"
regex = "1.10.5"
log = "0.4.22"
structured-logger = "1.0.3"
schemars = "0.8.17"
schemars = "0.8.21"

[features]

Expand Down
26 changes: 13 additions & 13 deletions crates/conjure_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ uniplate = { git = "https://github.com/conjure-cp/conjure-oxide.git", rev = "0dc
uniplate_derive = { git = "https://github.com/conjure-cp/conjure-oxide.git", rev = "0dc7090f0388d9a4fc0460d7d5fbf79da7854170" }
minion_rs = { path = "../../solvers/minion" }
project-root = "0.2.2"
linkme = "0.3.25"
serde = { version = "1.0.199", features = ["derive"] }
serde_json = "1.0.116"
serde_with = "3.8.1"
strum = "0.26.2"
strum_macros = "0.26.2"
thiserror = "1.0.59"
linkme = "0.3.27"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.119"
serde_with = "3.8.2"
strum = "0.26.3"
strum_macros = "0.26.4"
thiserror = "1.0.61"
derive_is_enum_variant = "0.1.1"
log = "0.4.21"
anyhow = "1.0.82"
regex = "1.10.4"
log = "0.4.22"
anyhow = "1.0.86"
regex = "1.10.5"
walkdir = "2.5.0"
derivative = "2.2.0"
schemars = "0.8.17"
clap = { version = "4.5.4", features = ["derive"] }
itertools = "0.12.1"
schemars = "0.8.21"
clap = { version = "4.5.8", features = ["derive"] }
itertools = "0.13.0"
im = "15.1.0"

[lints]
Expand Down
6 changes: 3 additions & 3 deletions crates/conjure_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ proc_macro = true

[dependencies]
quote = "1.0.36"
syn = { version = "2.0.60", features = ["full"] }
proc-macro2 = "1.0.81"
linkme = "0.3.25"
syn = { version = "2.0.65", features = ["full"] }
proc-macro2 = "1.0.86"
linkme = "0.3.27"

[lints]
workspace = true
4 changes: 2 additions & 2 deletions crates/enum_compatability_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.36"
syn = { version = "2.0.60", features = ["parsing","visit-mut","full"] }
itertools = "0.12"
syn = { version = "2.0.65", features = ["parsing","visit-mut","full"] }
itertools = "0.13"

[lints]
workspace = true
6 changes: 3 additions & 3 deletions crates/uniplate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ license = "MPL-2.0"

[dependencies]
im = {version = "15.1.0", features = ["proptest"]}
proptest = "1.4.0"
proptest-derive = "0.4.0"
thiserror = "1.0.59"
proptest = "1.5.0"
proptest-derive = "0.5.0"
thiserror = "1.0.61"

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

[dependencies]
proc-macro2 = "1.0.81"
syn = "2.0.60"
proc-macro2 = "1.0.86"
syn = "2.0.65"
quote = "1.0.36"
log = "0.4.21"
log = "0.4.22"
uniplate = {path = "../uniplate"}

[lints]
Expand Down
2 changes: 1 addition & 1 deletion solvers/chuffed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ edition = "2021"
[dependencies]

[build-dependencies]
cc = { version = "1.0.95", features = ["parallel"] }
cc = { version = "1.0.104", features = ["parallel"] }
bindgen = "0.69.4"
6 changes: 3 additions & 3 deletions solvers/minion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.82"
libc = "0.2.153"
thiserror = "1.0.59"
anyhow = "1.0.86"
libc = "0.2.155"
thiserror = "1.0.61"

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

0 comments on commit ec6cf20

Please sign in to comment.