Update cargo.toml

This commit is contained in:
howardwu 2020-08-21 02:54:04 -07:00
parent 16f0e0b5f6
commit 4da4fc4344
10 changed files with 65 additions and 2 deletions

2
Cargo.lock generated
View File

@ -1315,7 +1315,7 @@ dependencies = [
]
[[package]]
name = "leo-linter"
name = "leo-liner"
version = "1.0.0"
[[package]]

View File

@ -2,6 +2,13 @@
name = "leo"
version = "1.0.0"
authors = ["The Aleo Team <hello@aleo.org>"]
description = "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"
[lib]

View File

@ -2,6 +2,13 @@
name = "leo-ast"
version = "1.0.0"
authors = ["The Aleo Team <hello@aleo.org>"]
description = "AST 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"
[[bin]]

View File

@ -2,6 +2,13 @@
name = "leo-compiler"
version = "1.0.0"
authors = ["The Aleo Team <hello@aleo.org>"]
description = "Compiler 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]

View File

@ -2,6 +2,13 @@
name = "leo-gadgets"
version = "1.0.0"
authors = ["The Aleo Team <hello@aleo.org>"]
description = "Gadgets 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]

View File

@ -2,6 +2,13 @@
name = "leo-input"
version = "1.0.0"
authors = ["The Aleo Team <hello@aleo.org>"]
description = "Input 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]

View File

@ -1,7 +1,14 @@
[package]
name = "leo-linter"
name = "leo-liner"
version = "1.0.0"
authors = ["The Aleo Team <hello@aleo.org>"]
description = "Linter 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]

View File

@ -2,6 +2,13 @@
name = "leo-package"
version = "1.0.0"
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]

View File

@ -2,6 +2,13 @@
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]

View File

@ -2,6 +2,13 @@
name = "leo-typed"
version = "1.0.0"
authors = ["The Aleo Team <hello@aleo.org>"]
description = "Typed AST 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"
[[bin]]