2020-08-12 09:51:56 +03:00
|
|
|
[package]
|
|
|
|
name = "leo-state"
|
2021-04-15 23:49:42 +03:00
|
|
|
version = "1.4.0"
|
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-08-29 09:26:19 +03:00
|
|
|
[dependencies.leo-input]
|
|
|
|
path = "../input"
|
2021-04-15 23:49:42 +03:00
|
|
|
version = "1.4.0"
|
2020-08-12 09:51:56 +03:00
|
|
|
|
2020-10-31 03:31:09 +03:00
|
|
|
[dependencies.leo-ast]
|
|
|
|
path = "../ast"
|
2021-04-15 23:49:42 +03:00
|
|
|
version = "1.4.0"
|
2020-08-13 21:04:35 +03:00
|
|
|
|
2020-12-30 19:40:45 +03:00
|
|
|
[dependencies.snarkvm-algorithms]
|
2021-05-19 07:08:19 +03:00
|
|
|
version = "0.3.1"
|
2020-08-12 09:51:56 +03:00
|
|
|
|
2020-12-30 19:40:45 +03:00
|
|
|
[dependencies.snarkvm-curves]
|
2021-05-19 07:08:19 +03:00
|
|
|
version = "0.3.1"
|
2020-08-29 09:26:19 +03:00
|
|
|
default-features = false
|
|
|
|
|
2020-12-30 19:40:45 +03:00
|
|
|
[dependencies.snarkvm-dpc]
|
2021-05-19 07:08:19 +03:00
|
|
|
version = "0.3.1"
|
2020-08-29 09:26:19 +03:00
|
|
|
default-features = false
|
|
|
|
|
2020-12-30 19:40:45 +03:00
|
|
|
[dependencies.snarkvm-utilities]
|
2021-05-19 07:08:19 +03:00
|
|
|
version = "0.3.1"
|
2020-08-29 09:26:19 +03:00
|
|
|
|
2020-12-07 20:12:31 +03:00
|
|
|
[dependencies.indexmap]
|
2021-03-09 03:46:13 +03:00
|
|
|
version = "1.6.2"
|
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
|
|
|
|
|
|
|
[dependencies.thiserror]
|
|
|
|
version = "1.0"
|
|
|
|
|
2021-05-19 07:08:19 +03:00
|
|
|
#[dev-dependencies.snarkos-storage]
|
|
|
|
#version = "1.3.3"
|
2021-02-25 19:56:20 +03:00
|
|
|
|
|
|
|
[dev-dependencies.rand_core]
|
|
|
|
version = "0.6.2"
|