diff --git a/CHANGELOG.md b/CHANGELOG.md index 1573323634..da82885c10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ #### Upcoming Changes +#### [0.8.0] - 2023-6-26 + * feat: Add feature `lambdaworks-felt` to `felt` & `cairo-vm` crates [#1218](https://github.com/lambdaclass/cairo-rs/pull/1281) Changes under this feature: diff --git a/Cargo.lock b/Cargo.lock index db142159b9..ebd5a1dd7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -289,7 +289,7 @@ dependencies = [ [[package]] name = "cairo-felt" -version = "0.7.0" +version = "0.8.0" dependencies = [ "lambdaworks-math", "lazy_static", @@ -702,7 +702,7 @@ dependencies = [ [[package]] name = "cairo-take_until_unbalanced" -version = "0.31.0" +version = "0.32.0" dependencies = [ "nom", "wasm-bindgen-test", @@ -710,7 +710,7 @@ dependencies = [ [[package]] name = "cairo-vm" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "ark-ff", @@ -718,7 +718,7 @@ dependencies = [ "assert_matches", "bincode", "bitvec", - "cairo-felt 0.7.0", + "cairo-felt 0.8.0", "cairo-lang-casm", "cairo-lang-starknet", "cairo-take_until_unbalanced", @@ -753,7 +753,7 @@ dependencies = [ [[package]] name = "cairo-vm-cli" -version = "0.7.0" +version = "0.8.0" dependencies = [ "assert_matches", "bincode", @@ -1462,7 +1462,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hint_accountant" -version = "0.7.0" +version = "0.8.0" dependencies = [ "cairo-vm", "serde", diff --git a/Cargo.toml b/Cargo.toml index 70fd319fca..2d25da5dc5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,10 +52,10 @@ thiserror-no-std = { version = "2.0.2", default-features = false } # https://stackoverflow.com/questions/70630556/parse-allowing-nested-parentheses-in-nom # There is a proposal for extending nom::delimited to use this function: # https://github.com/Geal/nom/issues/1253 -parse-hyperlinks = { package = "cairo-take_until_unbalanced", path = "./deps/parse-hyperlinks", version = "0.31.0", default-features = false, features = [ +parse-hyperlinks = { package = "cairo-take_until_unbalanced", path = "./deps/parse-hyperlinks", version = "0.32.0", default-features = false, features = [ "alloc", ] } -felt = { package = "cairo-felt", path = "./felt", version = "0.7.0", default-features = false, features = [ +felt = { package = "cairo-felt", path = "./felt", version = "0.8.0", default-features = false, features = [ "alloc", ] } bitvec = { version = "1", default-features = false, features = ["alloc"] } diff --git a/cairo-vm-cli/Cargo.toml b/cairo-vm-cli/Cargo.toml index 4589cc043d..a86362ff08 100644 --- a/cairo-vm-cli/Cargo.toml +++ b/cairo-vm-cli/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "cairo-vm-cli" -version = "0.7.0" +version = "0.8.0" edition = "2021" [dependencies] bincode = { version = "2.0.0-rc.2", tag = "v2.0.0-rc.2", git = "https://github.com/bincode-org/bincode.git" } -cairo-vm = { path = "../vm", version = "0.7.0" } +cairo-vm = { path = "../vm", version = "0.8.0" } clap = { version = "3.2.5", features = ["derive"] } mimalloc = { version = "0.1.29", default-features = false, optional = true } nom = "7" diff --git a/deps/parse-hyperlinks/Cargo.toml b/deps/parse-hyperlinks/Cargo.toml index e2d6a9a75a..3f5fdc05c6 100644 --- a/deps/parse-hyperlinks/Cargo.toml +++ b/deps/parse-hyperlinks/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cairo-take_until_unbalanced" -version = "0.31.0" +version = "0.32.0" authors = [ "Jens Getreu ", "LambdaClass ", diff --git a/felt/Cargo.toml b/felt/Cargo.toml index 37686c2141..3ec81bc973 100644 --- a/felt/Cargo.toml +++ b/felt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cairo-felt" -version = "0.7.0" +version = "0.8.0" edition = "2021" license = "Apache-2.0" description = "Field elements representation for the Cairo VM" diff --git a/hint_accountant/Cargo.toml b/hint_accountant/Cargo.toml index 92f618a4a0..4f01a3dce4 100644 --- a/hint_accountant/Cargo.toml +++ b/hint_accountant/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "hint_accountant" -version = "0.7.0" +version = "0.8.0" edition = "2021" license = "Apache-2.0" description = "A script to check which whitelisted hints we're missing" [dependencies] -cairo-vm = { path = "../vm", version = "0.7.0" } +cairo-vm = { path = "../vm", version = "0.8.0" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/vm/Cargo.toml b/vm/Cargo.toml index 46981f4d46..a7670d2ff1 100644 --- a/vm/Cargo.toml +++ b/vm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cairo-vm" -version = "0.7.0" +version = "0.8.0" edition = "2021" license = "Apache-2.0" description = "Blazing fast Cairo interpreter"