mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-11 01:45:48 +03:00
32 lines
1.8 KiB
TOML
32 lines
1.8 KiB
TOML
[package]
|
|
name = "leo-state"
|
|
version = "1.0.0"
|
|
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.0.0" }
|
|
leo-typed = { path = "../typed", version = "1.0.0" }
|
|
|
|
snarkos-algorithms = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-algorithms", version = "1.0.0", default-features = false }
|
|
snarkos-curves = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-curves", version = "1.0.0", default-features = false }
|
|
snarkos-dpc = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-dpc", version = "1.0.0", default-features = false }
|
|
snarkos-errors = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-errors", version = "1.0.0", default-features = false }
|
|
snarkos-models = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-models", version = "1.0.0", default-features = false }
|
|
snarkos-objects = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-objects", version = "1.0.0", default-features = false }
|
|
snarkos-utilities = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-utilities", version = "1.0.0" }
|
|
|
|
rand = { version = "0.7" }
|
|
rand_xorshift = { version = "0.2" }
|
|
thiserror = { version = "1.0" }
|
|
|
|
[dev-dependencies]
|
|
snarkos-storage = { git = "ssh://git@github.com/AleoHQ/snarkOS.git", package = "snarkos-storage" }
|