bump aleo v0.3.5 (#2274)

This commit is contained in:
Collin Chin 2023-02-17 22:24:07 -05:00 committed by GitHub
parent cc23fb0bea
commit 4a9e40190b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 41 additions and 3 deletions

42
Cargo.lock generated
View File

@ -70,10 +70,11 @@ dependencies = [
[[package]]
name = "aleo"
version = "0.3.3"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17259b13bd25bf6fdc8d6a207fd690daca08640dd364d7072ba425b5a5bfa6cd"
checksum = "3c64d1e213c2b444cdcf1c814d5aa2641c16decf0e4c761f198ca3909ca43eac"
dependencies = [
"aleo-rust",
"anyhow",
"clap",
"colored",
@ -81,6 +82,7 @@ dependencies = [
"parking_lot",
"rand",
"rand_chacha",
"rpassword",
"self_update 0.32.0",
"serde",
"serde_json",
@ -91,6 +93,21 @@ dependencies = [
"warp",
]
[[package]]
name = "aleo-rust"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45d149306877bc38f874e6636a8a70c5986247648da8493e69d867d80736837f"
dependencies = [
"anyhow",
"indexmap",
"once_cell",
"rand",
"serde_json",
"snarkvm",
"ureq",
]
[[package]]
name = "aleo-std"
version = "0.1.15"
@ -2103,6 +2120,27 @@ dependencies = [
"winapi",
]
[[package]]
name = "rpassword"
version = "7.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6678cf63ab3491898c0d021b493c94c9b221d91295294a2a5746eacbe5928322"
dependencies = [
"libc",
"rtoolbox",
"winapi",
]
[[package]]
name = "rtoolbox"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "034e22c514f5c0cb8a10ff341b9b048b5ceb21591f31c8f44c43b960f9b3524a"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "rustc-demangle"
version = "0.1.21"

View File

@ -50,7 +50,7 @@ ci_skip = [ "leo-compiler/ci_skip" ]
noconfig = [ ]
[dependencies.aleo]
version = "=0.3.3"
version = "=0.3.5"
[dependencies.leo-ast]
path = "./compiler/ast"