Merge pull request #2333 from AleoHQ/upgrade/snarkvm-0.9.15

Update snarkVM to 0.9.15, aleo to 0.3.6
This commit is contained in:
d0cd 2023-04-03 15:35:42 -07:00 committed by GitHub
commit 6bb50c284a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 275 additions and 356 deletions

623
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -32,10 +32,10 @@ members = [
]
[workspace.dependencies.snarkvm]
version = "0.9.13"
version = "0.9.15"
[workspace.dependencies.snarkvm-console]
version = "0.9.13"
version = "0.9.15"
[lib]
path = "leo/lib.rs"
@ -50,7 +50,7 @@ ci_skip = [ "leo-compiler/ci_skip" ]
noconfig = [ ]
[dependencies.aleo]
version = "=0.3.5"
version = "=0.3.6"
[dependencies.leo-ast]
path = "./compiler/ast"

View File

@ -20,9 +20,9 @@ use leo_errors::{type_name, FlattenError, LeoError, Result};
use leo_span::{Span, Symbol};
use indexmap::IndexMap;
use std::num::ParseIntError;
use std::{
fmt::Display,
num::ParseIntError,
ops::{BitAnd, BitOr, BitXor, Not},
};