diff --git a/arithmetic/Cargo.toml b/arithmetic/Cargo.toml index 99192dc0..8c8e5835 100644 --- a/arithmetic/Cargo.toml +++ b/arithmetic/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] ark-bls12-381 = { version = "0.4.0", default-features = false, features = [ "curve" ] } ark-ff = { version = "^0.4.0", default-features = false } -ark-poly = { version = "^0.4.0", default-features = false } +ark-poly = { version = "^0.5.0", default-features = false } ark-serialize = { version = "^0.4.0", default-features = false } ark-std = { version = "^0.4.0", default-features = false } displaydoc = { version = "0.2.3", default-features = false } diff --git a/hyperplonk/Cargo.toml b/hyperplonk/Cargo.toml index 90a8cda0..b7e4b3a6 100644 --- a/hyperplonk/Cargo.toml +++ b/hyperplonk/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" arithmetic = { path = "../arithmetic" } ark-ec = { version = "^0.4.0", default-features = false } ark-ff = { version = "^0.4.0", default-features = false } -ark-poly = { version = "^0.4.0", default-features = false } +ark-poly = { version = "^0.5.0", default-features = false } ark-serialize = { version = "^0.4.0", default-features = false, features = [ "derive" ] } ark-std = { version = "^0.4.0", default-features = false } displaydoc = { version = "0.2.3", default-features = false } diff --git a/subroutines/Cargo.toml b/subroutines/Cargo.toml index 78d9260f..12991682 100644 --- a/subroutines/Cargo.toml +++ b/subroutines/Cargo.toml @@ -9,7 +9,7 @@ arithmetic = { path = "../arithmetic" } ark-bls12-381 = { version = "0.4.0", default-features = false, features = [ "curve" ] } ark-ec = { version = "^0.4.0", default-features = false } ark-ff = { version = "^0.4.0", default-features = false } -ark-poly = { version = "^0.4.0", default-features = false } +ark-poly = { version = "^0.5.0", default-features = false } ark-serialize = { version = "^0.4.0", default-features = false } ark-std = { version = "^0.4.0", default-features = false } derivative = { version = "2", features = ["use_core"] }