Update snarkVM to 0.9.15, aleo to 0.3.6

This commit is contained in:
Pranav Gaddamadugu 2023-03-31 16:40:12 -07:00
parent 4bdfcf950b
commit 2b010b6992
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},
};