-
Notifications
You must be signed in to change notification settings - Fork 658
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
125 additions
and
125 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-lang" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "The Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -22,11 +22,11 @@ path = "leo/main.rs" | |
members = [ "ast", "compiler", "gadgets", "input", "linter", "package", "typed", "state"] | ||
|
||
[dependencies] | ||
leo-compiler = { path = "./compiler", version = "1.0.0" } | ||
leo-gadgets = { path = "./gadgets", version = "1.0.0" } | ||
leo-input = { path = "./input", version = "1.0.0" } | ||
leo-package = { path = "./package", version = "1.0.0" } | ||
leo-state = { path = "./state", version = "1.0.0" } | ||
leo-compiler = { path = "./compiler", version = "1.0.1" } | ||
leo-gadgets = { path = "./gadgets", version = "1.0.1" } | ||
leo-input = { path = "./input", version = "1.0.1" } | ||
leo-package = { path = "./package", version = "1.0.1" } | ||
leo-state = { path = "./state", version = "1.0.1" } | ||
|
||
snarkos-algorithms = { version = "1.1.3", default-features = false } | ||
snarkos-curves = { version = "1.1.3", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-ast" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "AST of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-compiler" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "Compiler of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -12,12 +12,12 @@ license = "GPL-3.0" | |
edition = "2018" | ||
|
||
[dependencies] | ||
leo-ast = { path = "../ast", version = "1.0.0" } | ||
leo-gadgets = { path = "../gadgets", version = "1.0.0" } | ||
leo-input = { path = "../input", version = "1.0.0" } | ||
leo-package = { path = "../package", version = "1.0.0"} | ||
leo-typed = { path = "../typed", version = "1.0.0" } | ||
leo-state = { path = "../state", version = "1.0.0" } | ||
leo-ast = { path = "../ast", version = "1.0.1" } | ||
leo-gadgets = { path = "../gadgets", version = "1.0.1" } | ||
leo-input = { path = "../input", version = "1.0.1" } | ||
leo-package = { path = "../package", version = "1.0.1"} | ||
leo-typed = { path = "../typed", version = "1.0.1" } | ||
leo-state = { path = "../state", version = "1.0.1" } | ||
|
||
snarkos-curves = { version = "1.1.3", default-features = false } | ||
snarkos-dpc = { version = "1.1.3", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-gadgets" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "Gadgets of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-input" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "Input parser of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ use clap::{App, AppSettings, Arg}; | |
#[cfg_attr(tarpaulin, skip)] | ||
fn main() -> Result<(), CLIError> { | ||
let arguments = App::new("leo") | ||
.version("v1.0.0") | ||
.version("v1.0.1") | ||
.about("Leo compiler and package manager") | ||
.author("The Aleo Team <[email protected]>") | ||
.settings(&[ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-liner" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "Linter of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-package" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "Package parser of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-state" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "State parser of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -12,8 +12,8 @@ license = "GPL-3.0" | |
edition = "2018" | ||
|
||
[dependencies] | ||
leo-input = { path = "../input", version = "1.0.0" } | ||
leo-typed = { path = "../typed", version = "1.0.0" } | ||
leo-input = { path = "../input", version = "1.0.1" } | ||
leo-typed = { path = "../typed", version = "1.0.1" } | ||
|
||
snarkos-algorithms = { version = "1.1.3", default-features = false } | ||
snarkos-curves = { version = "1.1.3", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "leo-typed" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["The Aleo Team <[email protected]>"] | ||
description = "Typed AST of the Leo programming language" | ||
homepage = "https://aleo.org" | ||
|
@@ -21,8 +21,8 @@ path = "benches/typed_ast.rs" | |
harness = false | ||
|
||
[dependencies] | ||
leo-ast = { path = "../ast", version = "1.0.0" } | ||
leo-input = { path = "../input", version = "1.0.0" } | ||
leo-ast = { path = "../ast", version = "1.0.1" } | ||
leo-input = { path = "../input", version = "1.0.1" } | ||
|
||
snarkos-errors = { version = "1.1.3", default-features = false } | ||
snarkos-models = { version = "1.1.3", default-features = false } | ||
|