Skip to content

Commit 3082294

Browse files
committed
chore!: Upgrade dependency “Triton VM”
1 parent f499735 commit 3082294

9 files changed

+9
-9
lines changed

tasm-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ serde = { version = "1", features = ["derive"] }
3737
serde_json = "1"
3838
strum = { version = "0.27", features = ["derive"] }
3939
tasm-object-derive.workspace = true
40-
triton-vm = { version = "0.49.0", default-features = false }
40+
triton-vm = { version = "0.50.0", default-features = false }
4141

4242
[dev-dependencies.cargo-husky]
4343
version = "1"

tasm-lib/src/hashing/absorb_multiple_static_size.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use triton_vm::prelude::*;
2-
use twenty_first::math::tip5::RATE;
2+
use twenty_first::tip5::RATE;
33

44
use crate::memory::load_words_from_memory_pop_pointer;
55
use crate::prelude::*;

tasm-lib/src/hashing/algebraic_hasher/sample_scalars_static_length_dyn_malloc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use triton_vm::prelude::*;
2-
use twenty_first::math::tip5::RATE;
32
use twenty_first::math::x_field_element::EXTENSION_DEGREE;
3+
use twenty_first::tip5::RATE;
44

55
use crate::data_type::ArrayType;
66
use crate::hashing::squeeze_repeatedly_static_number::SqueezeRepeatedlyStaticNumber;

tasm-lib/src/hashing/algebraic_hasher/sample_scalars_static_length_kmalloc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use triton_vm::prelude::*;
2-
use twenty_first::math::tip5::RATE;
32
use twenty_first::math::x_field_element::EXTENSION_DEGREE;
3+
use twenty_first::tip5::RATE;
44

55
use crate::hashing::algebraic_hasher::sample_scalars_static_length_dyn_malloc::SampleScalarsStaticLengthDynMalloc;
66
use crate::hashing::squeeze_repeatedly_static_number::SqueezeRepeatedlyStaticNumber;

tasm-lib/src/hashing/algebraic_hasher/sample_scalars_static_length_static_pointer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use triton_vm::prelude::*;
2-
use twenty_first::math::tip5::RATE;
32
use twenty_first::math::x_field_element::EXTENSION_DEGREE;
3+
use twenty_first::tip5::RATE;
44

55
use crate::hashing::algebraic_hasher::sample_scalars_static_length_dyn_malloc::SampleScalarsStaticLengthDynMalloc;
66
use crate::hashing::squeeze_repeatedly_static_number::SqueezeRepeatedlyStaticNumber;

tasm-lib/src/hashing/sponge_hasher/absorb.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use triton_vm::prelude::*;
2-
use twenty_first::math::tip5::RATE;
2+
use twenty_first::tip5::RATE;
33

44
use crate::data_type::ArrayType;
55
use crate::prelude::*;

tasm-lib/src/hashing/sponge_hasher/squeeze.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use triton_vm::prelude::*;
2-
use twenty_first::math::tip5::RATE;
2+
use twenty_first::tip5::RATE;
33

44
use crate::data_type::ArrayType;
55
use crate::prelude::*;

tasm-lib/src/hashing/squeeze_repeatedly_static_number.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use triton_vm::prelude::*;
2-
use twenty_first::math::tip5::RATE;
2+
use twenty_first::tip5::RATE;
33

44
use crate::prelude::*;
55

tasm-lib/src/verifier/master_table/verify_table_rows.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ impl BasicSnippet for VerifyTableRows {
203203
#[cfg(test)]
204204
mod tests {
205205
use twenty_first::math::other::random_elements;
206-
use twenty_first::math::tip5::RATE;
207206
use twenty_first::prelude::*;
207+
use twenty_first::tip5::RATE;
208208

209209
use super::*;
210210
use crate::memory::encode_to_memory;

0 commit comments

Comments
 (0)