Skip to content

Commit

Permalink
update to twenty-first v0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-ferdinand committed Mar 3, 2023
1 parent c1be5bb commit ff972ff
Show file tree
Hide file tree
Showing 11 changed files with 329 additions and 342 deletions.
2 changes: 1 addition & 1 deletion constraint-evaluation-generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ version = "1"
default-features = false

[dependencies]
twenty-first = "0.14.1"
twenty-first = "0.18"
triton-vm = { path = "../triton-vm" }
itertools = "0.10"
2 changes: 1 addition & 1 deletion triton-opcodes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ version = "1"
default-features = false

[dependencies]
twenty-first = "0.14.1"
twenty-first = "0.18"
anyhow = "1.0"
itertools = "0.10.5"
num-traits = "0.2.15"
Expand Down
2 changes: 1 addition & 1 deletion triton-profiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ keywords = ["triton-vm", "stark", "profiler"]
categories = ["cryptography", "mathematics"]

[dependencies]
twenty-first = "0.14.1"
twenty-first = "0.18"
anyhow = "1.0"
bincode = "1.3"
blake3 = "1.2"
Expand Down
6 changes: 3 additions & 3 deletions triton-vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ version = "1"
default-features = false

[dependencies]
twenty-first = "0.18"
triton-opcodes = {path = "../triton-opcodes"}
twenty-first = "0.14.1"
triton-profiler = "0.13"
triton-profiler ={path = "../triton-profiler"}
anyhow = "1.0"
bincode = "1.3"
blake3 = "1.2"
Expand All @@ -57,7 +57,7 @@ regex = "1.7"
ring = "0.16.20"
rusty-leveldb = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde-big-array = "0.4.1"
serde-big-array = "0.5"
serde_derive = "1.0"
serde_json = "1.0"
serde_with = "2.1"
Expand Down
4 changes: 2 additions & 2 deletions triton-vm/src/bfield_codec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use itertools::Itertools;
use num_traits::One;
use num_traits::Zero;
use twenty_first::shared_math::b_field_element::BFieldElement;
use twenty_first::shared_math::rescue_prime_digest::Digest;
use twenty_first::shared_math::rescue_prime_digest::DIGEST_LENGTH;
use twenty_first::shared_math::tip5::Digest;
use twenty_first::shared_math::tip5::DIGEST_LENGTH;
use twenty_first::shared_math::x_field_element::XFieldElement;
use twenty_first::shared_math::x_field_element::EXTENSION_DEGREE;
use twenty_first::util_types::algebraic_hasher::Hashable;
Expand Down
Loading

0 comments on commit ff972ff

Please sign in to comment.