mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-11 01:45:48 +03:00
22 lines
723 B
TOML
22 lines
723 B
TOML
[package]
|
|
name = "leo-package"
|
|
version = "1.0.1"
|
|
authors = ["The Aleo Team <hello@aleo.org>"]
|
|
description = "Package 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]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0" }
|
|
thiserror = { version = "1.0" }
|
|
toml = { version = "0.5" }
|
|
tracing = { version = "0.1" }
|
|
walkdir = { version = "2" }
|
|
zip = { version = "0.5" }
|