Skip to content

Commit

Permalink
Update Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
howardwu committed Aug 27, 2020
1 parent 0023ee8 commit 12971b9
Show file tree
Hide file tree
Showing 11 changed files with 125 additions and 125 deletions.
200 changes: 100 additions & 100 deletions Cargo.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions Cargo.toml
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"
Expand All @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion ast/Cargo.toml
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"
Expand Down
14 changes: 7 additions & 7 deletions compiler/Cargo.toml
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"
Expand All @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion gadgets/Cargo.toml
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"
Expand Down
2 changes: 1 addition & 1 deletion input/Cargo.toml
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"
Expand Down
2 changes: 1 addition & 1 deletion leo/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(&[
Expand Down
2 changes: 1 addition & 1 deletion linter/Cargo.toml
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"
Expand Down
2 changes: 1 addition & 1 deletion package/Cargo.toml
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"
Expand Down
6 changes: 3 additions & 3 deletions state/Cargo.toml
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"
Expand All @@ -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 }
Expand Down
6 changes: 3 additions & 3 deletions typed/Cargo.toml
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"
Expand All @@ -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 }
Expand Down

0 comments on commit 12971b9

Please sign in to comment.