-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update crate versions to v0.3
- Loading branch information
Showing
11 changed files
with
75 additions
and
56 deletions.
There are no files selected for viewing
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,34 +1,34 @@ | ||
[package] | ||
name = "air-script" | ||
version = "0.2.0" | ||
description="AirScript language compiler" | ||
version = "0.3.0" | ||
description = "AirScript language compiler" | ||
authors = ["miden contributors"] | ||
readme="README.md" | ||
readme = "README.md" | ||
license = "MIT" | ||
repository = "https://github.com/0xPolygonMiden/air-script" | ||
documentation = "https://0xpolygonmiden.github.io/air-script/" | ||
categories = ["compilers", "cryptography"] | ||
keywords = ["air", "stark", "zero-knowledge", "zkp"] | ||
edition = "2021" | ||
rust-version = "1.65" | ||
rust-version = "1.67" | ||
|
||
[[bin]] | ||
name = "airc" | ||
path = "src/main.rs" | ||
|
||
[dependencies] | ||
air-ir = { path = "../ir", version = "0.2.0" } | ||
air-parser = { path = "../parser", version = "0.2.0" } | ||
air-pass = { path = "../pass", version = "0.1.0" } | ||
air-codegen-winter = { path = "../codegen/winterfell", version = "0.2.0" } | ||
air-codegen-masm = { path = "../codegen/masm" } | ||
env_logger = "0.10.0" | ||
air-ir = { package = "air-ir", path = "../ir", version = "0.3" } | ||
air-parser = { package = "air-parser", path = "../parser", version = "0.3" } | ||
air-pass = { package = "air-pass", path = "../pass", version = "0.1" } | ||
air-codegen-masm = { package = "air-codegen-masm", path = "../codegen/masm", version = "0.1" } | ||
air-codegen-winter = { package = "air-codegen-winter", path = "../codegen/winterfell", version = "0.3" } | ||
clap = {version = "4.2", features = ["derive"] } | ||
env_logger = "0.10" | ||
log = { version = "0.4", default-features = false } | ||
miden-diagnostics = { git = "https://github.com/0xPolygonMiden/miden-diagnostics" } | ||
clap = {version = "4.2", features = ["derive"]} | ||
miden-diagnostics = "0.1" | ||
|
||
[dev-dependencies] | ||
winter-air = { package = "winter-air", version = "0.5.1", default-features = false } | ||
winter-math = { package = "winter-math", version = "0.5.1", default-features = false } | ||
winter-utils = { package = "winter-utils", version = "0.5.1", default-features = false } | ||
expect-test = "1.4.0" | ||
expect-test = "1.4" | ||
winter-air = { package = "winter-air", version = "0.6", default-features = false } | ||
winter-math = { package = "winter-math", version = "0.6", default-features = false } | ||
winter-utils = { package = "winter-utils", version = "0.6", 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,18 +1,27 @@ | ||
[package] | ||
name = "air-codegen-masm" | ||
version = "0.1.0" | ||
description = "Miden Assembly code generator for the AirScript language" | ||
authors = ["miden contributors"] | ||
readme = "README.md" | ||
license = "MIT" | ||
repository = "https://github.com/0xPolygonMiden/air-script" | ||
categories = ["compilers", "cryptography"] | ||
keywords = ["air", "stark", "winterfell", "zero-knowledge", "zkp"] | ||
edition = "2021" | ||
rust-version = "1.67" | ||
|
||
[dependencies] | ||
air-ir = { path = "../../ir", version = "0.2.0" } | ||
air-ir = { package = "air-ir", path = "../../ir", version = "0.3" } | ||
anyhow = "1.0" | ||
winter-prover = { version = "0.6", default-features = false } | ||
miden-processor = { git = "https://github.com/0xPolygonMiden/miden-vm", features = ["internals"], default-features = false } | ||
miden-core = { package = "miden-core", version = "0.6", default-features = false } | ||
thiserror = "1.0" | ||
winter-math = { package = "winter-math", version = "0.6", default-features = false } | ||
|
||
[dev-dependencies] | ||
air-parser = { path = "../../parser", version = "0.2.0" } | ||
air-parser = { path = "../../parser" } | ||
air-pass = { path = "../../pass" } | ||
miden = "0.3.0" | ||
miden-diagnostics = { git = "https://github.com/0xpolygonmiden/miden-diagnostics" } | ||
miden-assembly = { git = "https://github.com/0xPolygonMiden/miden-vm", default-features = false } | ||
miden-assembly = { package = "miden-assembly", version = "0.6", default-features = false } | ||
miden-processor = { package = "miden-processor", version = "0.6", features = ["internals"], default-features = false } | ||
miden-diagnostics = "0.1" | ||
winter-air = { package = "winter-air", version = "0.6", 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
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
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
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,17 +1,17 @@ | ||
[package] | ||
name = "air-codegen-winter" | ||
version = "0.2.0" | ||
description="Winterfell code generator for the AirScript language" | ||
version = "0.3.0" | ||
description = "Winterfell code generator for the AirScript language" | ||
authors = ["miden contributors"] | ||
readme="README.md" | ||
readme = "README.md" | ||
license = "MIT" | ||
repository = "https://github.com/0xPolygonMiden/air-script" | ||
categories = ["compilers", "cryptography"] | ||
keywords = ["air", "stark", "winterfell", "zero-knowledge", "zkp"] | ||
edition = "2021" | ||
rust-version = "1.65" | ||
rust-version = "1.67" | ||
|
||
[dependencies] | ||
air-ir = { path="../../ir", version="0.2.0" } | ||
air-ir = { package = "air-ir", path = "../../ir", version = "0.3" } | ||
anyhow = "1.0" | ||
codegen = "0.2.0" | ||
codegen = "0.2" |
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,19 +1,19 @@ | ||
[package] | ||
name = "air-ir" | ||
version = "0.2.0" | ||
description="Intermediate representation for the AirScript language" | ||
version = "0.3.0" | ||
description = "Intermediate representation for the AirScript language" | ||
authors = ["miden contributors"] | ||
readme="README.md" | ||
readme = "README.md" | ||
license = "MIT" | ||
repository = "https://github.com/0xPolygonMiden/air-script" | ||
categories = ["compilers", "cryptography"] | ||
keywords = ["air", "stark", "zero-knowledge", "zkp"] | ||
edition = "2021" | ||
rust-version = "1.65" | ||
rust-version = "1.67" | ||
|
||
[dependencies] | ||
air-parser = { path = "../parser", version = "0.2.0" } | ||
air-pass = { path = "../pass", version = "0.1.0" } | ||
air-parser = { package = "air-parser", path = "../parser", version = "0.3" } | ||
air-pass = { package = "air-pass", path = "../pass", version = "0.1" } | ||
anyhow = "1.0" | ||
miden-diagnostics = { git = "https://github.com/0xpolygonmiden/miden-diagnostics" } | ||
miden-diagnostics = "0.1" | ||
thiserror = "1.0" |
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
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
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
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,12 +1,12 @@ | ||
[package] | ||
name = "air-pass" | ||
version = "0.1.0" | ||
description="Provides reusable compiler pass infrastructure for the AirScript compiler" | ||
description = "Reusable compiler pass infrastructure for the AirScript compiler" | ||
authors = ["Paul Schoenfelder"] | ||
license = "MIT" | ||
repository = "https://github.com/0xPolygonMiden/air-script" | ||
categories = ["compilers"] | ||
edition = "2021" | ||
rust-version = "1.65" | ||
rust-version = "1.67" | ||
|
||
[dependencies] |