2020-08-12 09:51:56 +03:00
|
|
|
[package]
|
|
|
|
name = "leo-state"
|
2021-07-30 04:59:08 +03:00
|
|
|
version = "1.5.3"
|
2020-08-29 09:26:19 +03:00
|
|
|
authors = [ "The Aleo Team <hello@aleo.org>" ]
|
2020-08-21 12:54:04 +03:00
|
|
|
description = "State parser of the Leo programming language"
|
|
|
|
homepage = "https://aleo.org"
|
|
|
|
repository = "https://github.com/AleoHQ/leo"
|
2020-08-29 09:26:19 +03:00
|
|
|
keywords = [
|
|
|
|
"aleo",
|
|
|
|
"cryptography",
|
|
|
|
"leo",
|
|
|
|
"programming-language",
|
|
|
|
"zero-knowledge"
|
|
|
|
]
|
|
|
|
categories = [ "cryptography::cryptocurrencies", "web-programming" ]
|
|
|
|
include = [ "Cargo.toml", "src", "README.md", "LICENSE.md" ]
|
2020-08-21 12:54:04 +03:00
|
|
|
license = "GPL-3.0"
|
2020-08-12 09:51:56 +03:00
|
|
|
edition = "2018"
|
|
|
|
|
2020-10-31 03:31:09 +03:00
|
|
|
[dependencies.leo-ast]
|
|
|
|
path = "../ast"
|
2021-07-30 04:59:08 +03:00
|
|
|
version = "1.5.3"
|
2020-08-13 21:04:35 +03:00
|
|
|
|
2021-08-05 01:22:40 +03:00
|
|
|
[dependencies.leo-errors]
|
|
|
|
path = "../errors"
|
|
|
|
version = "1.5.3"
|
|
|
|
|
2020-12-30 19:40:45 +03:00
|
|
|
[dependencies.snarkvm-algorithms]
|
2022-01-12 03:22:34 +03:00
|
|
|
git = "https://github.com/AleoHQ/snarkVM.git"
|
2022-02-03 01:58:01 +03:00
|
|
|
rev = "51633e2"
|
2020-08-12 09:51:56 +03:00
|
|
|
|
2020-12-30 19:40:45 +03:00
|
|
|
[dependencies.snarkvm-curves]
|
2022-01-12 03:22:34 +03:00
|
|
|
git = "https://github.com/AleoHQ/snarkVM.git"
|
2022-02-03 01:58:01 +03:00
|
|
|
rev = "51633e2"
|
2020-08-29 09:26:19 +03:00
|
|
|
default-features = false
|
|
|
|
|
2020-12-30 19:40:45 +03:00
|
|
|
[dependencies.snarkvm-dpc]
|
2022-01-12 03:22:34 +03:00
|
|
|
git = "https://github.com/AleoHQ/snarkVM.git"
|
2022-02-03 01:58:01 +03:00
|
|
|
rev = "51633e2"
|
2022-01-12 03:22:34 +03:00
|
|
|
features = [ "testnet2" ]
|
2020-08-29 09:26:19 +03:00
|
|
|
|
2020-12-30 19:40:45 +03:00
|
|
|
[dependencies.snarkvm-utilities]
|
2022-01-12 03:22:34 +03:00
|
|
|
git = "https://github.com/AleoHQ/snarkVM.git"
|
2022-02-03 01:58:01 +03:00
|
|
|
rev = "51633e2"
|
2020-08-29 09:26:19 +03:00
|
|
|
|
2020-12-07 20:12:31 +03:00
|
|
|
[dependencies.indexmap]
|
2021-06-30 13:21:58 +03:00
|
|
|
version = "1.7.0"
|
2020-12-14 20:57:01 +03:00
|
|
|
features = [ "serde-1" ]
|
2020-12-07 20:12:31 +03:00
|
|
|
|
2020-08-29 09:26:19 +03:00
|
|
|
[dependencies.rand]
|
2021-02-25 19:56:20 +03:00
|
|
|
version = "0.8"
|
2020-08-29 09:26:19 +03:00
|
|
|
|
|
|
|
[dependencies.rand_xorshift]
|
2021-02-25 19:56:20 +03:00
|
|
|
version = "0.3"
|
2020-08-29 09:26:19 +03:00
|
|
|
|
2021-02-25 19:56:20 +03:00
|
|
|
[dev-dependencies.rand_core]
|
2021-06-16 20:13:33 +03:00
|
|
|
version = "0.6.3"
|