Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: switch all crates to a single workspace version (0.0.5) #300

Merged
merged 1 commit into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ exclude = [
]

[workspace.package]
version = "0.0.0"
version = "0.0.5"
rust-version = "1.78"
authors = ["Miden contributors"]
description = "An intermediate representation and compiler for Miden Assembly"
Expand Down
2 changes: 1 addition & 1 deletion codegen/masm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midenc-codegen-masm"
description = "Miden Assembly backend for the Miden compiler"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion frontend-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midenc-frontend-wasm"
description = "Wasm frontend for the Miden compiler"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion hir-analysis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midenc-hir-analysis"
description = "Analysis passes and utilties for Miden HIR"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion hir-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midenc-hir-macros"
description = "Provides proc macro support for Miden IR"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion hir-symbol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midenc-hir-symbol"
description = "String interning for the Miden compiler"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion hir-transform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midenc-hir-transform"
description = "Transformation passes and utilities for Miden HIR"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion hir-type/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midenc-hir-type"
description = "Type system and utilities for Miden HIR"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion hir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midenc-hir"
description = "High-level Intermediate Representation for Miden Assembly"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion midenc-compile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midenc-compile"
description = "The compiler frontend for Miden"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion midenc-debug/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midenc-debug"
description = "An interactive debugger for Miden VM programs"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion midenc-driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midenc-driver"
description = "The driver for midenc, the Miden compiler"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion midenc-session/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midenc-session"
description = "Session management for the Midenc compiler"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion midenc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "midenc"
description = "The compiler frontend/executable for Miden"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion sdk/alloc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "miden-sdk-alloc"
description = "A simple bump allocator for Miden SDK programs"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion sdk/base-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "miden-base-sys"
description = "Miden rollup Rust bingings and MASM library"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion sdk/sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "miden-sdk"
description = "Miden SDK"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion sdk/stdlib-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "miden-stdlib-sys"
description = "Low-level Rust bindings for the Miden standard library"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion tools/cargo-miden/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cargo-miden"
description = "A cargo extension to build Miden projects"
version = "0.0.5"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down
Loading