leo/deprecated/state/Cargo.toml

62 lines
1.3 KiB
TOML
Raw Normal View History

2020-08-12 09:51:56 +03:00
[package]
name = "leo-state"
version = "1.5.3"
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"
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"
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"
[dependencies.leo-input]
path = "../input"
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-01-18 03:07:31 +03:00
rev = "435f112"
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-01-18 03:07:31 +03:00
rev = "435f112"
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-01-18 03:07:31 +03:00
rev = "435f112"
2022-01-12 03:22:34 +03:00
features = [ "testnet2" ]
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-01-18 03:07:31 +03:00
rev = "435f112"
2020-12-07 20:12:31 +03:00
[dependencies.indexmap]
version = "1.7.0"
features = [ "serde-1" ]
2020-12-07 20:12:31 +03:00
[dependencies.rand]
version = "0.8"
[dependencies.rand_xorshift]
version = "0.3"
[dev-dependencies.rand_core]
version = "0.6.3"