Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiplication overflow detection for integer width > 64 bits #988

Merged
merged 16 commits into from
Sep 5, 2022
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ cc = "1.0"

[dependencies]
regex = "1"
num-bigint = "0.4"
rand = "0.8"
num-bigint = { version = "0.4", features = ["rand"]}
num-traits = "0.2"
num-integer = "0.1.44"
parity-wasm = "0.45"
Expand Down Expand Up @@ -56,7 +57,8 @@ num-derive = "0.3"
parity-scale-codec = "3.1"
ethabi = "17.0"
wasmi = "0.11"
rand = "0.7"
# rand version 0.7 is needed for ed25519_dalek::keypair::generate, used in solana_tests/signature_verify.rs
rand_07 = { package = "rand", version = "0.7" }
xermicus marked this conversation as resolved.
Show resolved Hide resolved
sha2 = "0.10"
# solana_rbpf makes api changes in patch versions
solana_rbpf = "=0.2.31"
Expand Down
Loading