From 4da4fc4344c88e22b47681a60161dda3c61aa803 Mon Sep 17 00:00:00 2001 From: howardwu Date: Fri, 21 Aug 2020 02:54:04 -0700 Subject: [PATCH] Update cargo.toml --- Cargo.lock | 2 +- Cargo.toml | 7 +++++++ ast/Cargo.toml | 7 +++++++ compiler/Cargo.toml | 7 +++++++ gadgets/Cargo.toml | 7 +++++++ input/Cargo.toml | 7 +++++++ linter/Cargo.toml | 9 ++++++++- package/Cargo.toml | 7 +++++++ state/Cargo.toml | 7 +++++++ typed/Cargo.toml | 7 +++++++ 10 files changed, 65 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d745382431..c0d560c765 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1315,7 +1315,7 @@ dependencies = [ ] [[package]] -name = "leo-linter" +name = "leo-liner" version = "1.0.0" [[package]] diff --git a/Cargo.toml b/Cargo.toml index 026f57d0e5..989bfc4dbb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,13 @@ name = "leo" version = "1.0.0" authors = ["The Aleo Team "] +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] diff --git a/ast/Cargo.toml b/ast/Cargo.toml index fbbb31f333..af9a9bfaea 100644 --- a/ast/Cargo.toml +++ b/ast/Cargo.toml @@ -2,6 +2,13 @@ name = "leo-ast" version = "1.0.0" authors = ["The Aleo Team "] +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]] diff --git a/compiler/Cargo.toml b/compiler/Cargo.toml index e3d84ebc66..6b3a565b3d 100644 --- a/compiler/Cargo.toml +++ b/compiler/Cargo.toml @@ -2,6 +2,13 @@ name = "leo-compiler" version = "1.0.0" authors = ["The Aleo Team "] +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] diff --git a/gadgets/Cargo.toml b/gadgets/Cargo.toml index d098dde721..9d6583b4e5 100644 --- a/gadgets/Cargo.toml +++ b/gadgets/Cargo.toml @@ -2,6 +2,13 @@ name = "leo-gadgets" version = "1.0.0" authors = ["The Aleo Team "] +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] diff --git a/input/Cargo.toml b/input/Cargo.toml index 8bbc654b97..b31d1abd1b 100644 --- a/input/Cargo.toml +++ b/input/Cargo.toml @@ -2,6 +2,13 @@ name = "leo-input" version = "1.0.0" authors = ["The Aleo Team "] +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] diff --git a/linter/Cargo.toml b/linter/Cargo.toml index b17dd542c3..99cb726527 100644 --- a/linter/Cargo.toml +++ b/linter/Cargo.toml @@ -1,7 +1,14 @@ [package] -name = "leo-linter" +name = "leo-liner" version = "1.0.0" authors = ["The Aleo Team "] +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] diff --git a/package/Cargo.toml b/package/Cargo.toml index d88c335bdb..fa44c06b8f 100644 --- a/package/Cargo.toml +++ b/package/Cargo.toml @@ -2,6 +2,13 @@ name = "leo-package" version = "1.0.0" authors = ["The Aleo Team "] +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] diff --git a/state/Cargo.toml b/state/Cargo.toml index f908dbe7a7..9a79daa20d 100644 --- a/state/Cargo.toml +++ b/state/Cargo.toml @@ -2,6 +2,13 @@ name = "leo-state" version = "1.0.0" authors = ["The Aleo Team "] +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] diff --git a/typed/Cargo.toml b/typed/Cargo.toml index a720c7a6a9..3de2ab64ae 100644 --- a/typed/Cargo.toml +++ b/typed/Cargo.toml @@ -2,6 +2,13 @@ name = "leo-typed" version = "1.0.0" authors = ["The Aleo Team "] +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]]