mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 03:34:51 +03:00
81b15d7c62
Bumps [snarkvm-curves](https://github.com/AleoHQ/snarkVM) from 0.7.4 to 0.7.5. - [Release notes](https://github.com/AleoHQ/snarkVM/releases) - [Commits](https://github.com/AleoHQ/snarkVM/compare/v0.7.4...v0.7.5) --- updated-dependencies: - dependency-name: snarkvm-curves dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
57 lines
1.1 KiB
TOML
57 lines
1.1 KiB
TOML
[package]
|
|
name = "leo-state"
|
|
version = "1.5.2"
|
|
authors = [ "The Aleo Team <hello@aleo.org>" ]
|
|
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" ]
|
|
license = "GPL-3.0"
|
|
edition = "2018"
|
|
|
|
[dependencies.leo-input]
|
|
path = "../input"
|
|
version = "1.5.2"
|
|
|
|
[dependencies.leo-ast]
|
|
path = "../ast"
|
|
version = "1.5.2"
|
|
|
|
[dependencies.snarkvm-algorithms]
|
|
version = "0.7.4"
|
|
|
|
[dependencies.snarkvm-curves]
|
|
version = "0.7.5"
|
|
default-features = false
|
|
|
|
[dependencies.snarkvm-dpc]
|
|
version = "0.7.4"
|
|
features = [ "testnet1" ]
|
|
|
|
[dependencies.snarkvm-utilities]
|
|
version = "0.7.4"
|
|
|
|
[dependencies.indexmap]
|
|
version = "1.7.0"
|
|
features = [ "serde-1" ]
|
|
|
|
[dependencies.rand]
|
|
version = "0.8"
|
|
|
|
[dependencies.rand_xorshift]
|
|
version = "0.3"
|
|
|
|
[dependencies.thiserror]
|
|
version = "1.0"
|
|
|
|
[dev-dependencies.rand_core]
|
|
version = "0.6.3"
|