diff --git a/Cargo.toml b/Cargo.toml index 517056aff4..c6bbf28693 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,10 +26,10 @@ config = "0.13.3" dashmap = "5.5.0" ff = { workspace = true } fxhash = "0.2.1" -generic-array = "0.14.7" +generic-array = "1.0.0" hex = { version = "0.4.3", features = ["serde"] } indexmap = { version = "2.1.0", features = ["rayon", "serde"] } -itertools = "0.11" +itertools = "0.12" lurk-macros = { version = "0.2.0", path = "lurk-macros" } lurk-metrics = { version = "0.2.0", path = "lurk-metrics" } metrics = { workspace = true } @@ -48,7 +48,7 @@ rand = { workspace = true } rand_core = { version = "0.6.4", default-features = false } rand_xorshift = "0.3.0" rayon = "1.7.0" -rustyline-derive = "0.9.0" +rustyline-derive = "0.10.0" serde = { workspace = true, features = ["derive"] } serde_bytes = "0.11.12" serde_json = { workspace = true } @@ -76,7 +76,7 @@ pasta-msm = { workspace = true } proptest = { workspace = true } proptest-derive = { workspace = true } rand = "0.8.5" -rustyline = { version = "11.0", features = [ +rustyline = { version = "13.0", features = [ "derive", "with-file-history", ], default-features = false } @@ -85,7 +85,7 @@ halo2curves = { version = "0.5.0", features = ["bits", "derive_serde"] } [target.'cfg(target_arch = "wasm32")'.dependencies] getrandom = { version = "0.2", features = ["js"] } -rustyline = { version = "11.0", features = ["derive"], default-features = false } +rustyline = { version = "13.0", features = ["derive"], default-features = false } halo2curves = { version = "0.5.0", default-features = false, features = ["bits", "derive_serde"] } [features] @@ -121,13 +121,13 @@ members = ["lurk-macros", "lurk-metrics"] [workspace.dependencies] abomonation = "0.7.3" anyhow = "1.0.72" -base64 = "0.13.1" +base64 = "0.21.5" bellpepper = { git = "https://github.com/lurk-lab/bellpepper", branch = "dev" } bellpepper-core = { git = "https://github.com/lurk-lab/bellpepper", branch = "dev" } bincode = "1.3.3" clap = "4.3.17" ff = "0.13" -metrics = "0.21.1" +metrics = "0.22.0" neptune = { git = "https://github.com/lurk-lab/neptune", branch = "dev", features = ["abomonation"] } nova = { git = "https://github.com/lurk-lab/arecibo", branch = "dev", package = "arecibo" } once_cell = "1.18.0" @@ -136,7 +136,7 @@ pasta_curves = { git = "https://github.com/lurk-lab/pasta_curves", branch = "dev pasta-msm = { git = "https://github.com/lurk-lab/pasta-msm", branch = "dev" } grumpkin-msm = { git = "https://github.com/lurk-lab/grumpkin-msm", branch = "dev", features = ["dont-implement-sort"] } proptest = "1.2.0" -proptest-derive = "0.3.0" +proptest-derive = "0.4.0" rand = "0.8" serde = "1.0" serde_json = { version = "1.0" } diff --git a/lurk-macros/Cargo.toml b/lurk-macros/Cargo.toml index eb160110d4..d33bd252cf 100644 --- a/lurk-macros/Cargo.toml +++ b/lurk-macros/Cargo.toml @@ -13,7 +13,7 @@ proc-macro = true [dependencies] proc-macro2 = "1.0.66" quote = "1.0.31" -syn = { version = "1.0.109", features = ["derive", "extra-traits", "full"] } +syn = { version = "2.0.45", features = ["derive", "extra-traits", "full"] } proptest = { workspace = true } proptest-derive = { workspace = true } serde = { workspace = true, features = ["derive"] }