Skip to content

Commit 0fa60bb

Browse files
authored
Merge pull request #300 from 0xPolygonMiden/greenhat/switch-to-workspace-version
chore: switch all crates to a single workspace version (0.0.5)
2 parents 305ea1c + 00246a2 commit 0fa60bb

File tree

20 files changed

+20
-20
lines changed

20 files changed

+20
-20
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ exclude = [
2626
]
2727

2828
[workspace.package]
29-
version = "0.0.0"
29+
version = "0.0.5"
3030
rust-version = "1.78"
3131
authors = ["Miden contributors"]
3232
description = "An intermediate representation and compiler for Miden Assembly"

codegen/masm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midenc-codegen-masm"
33
description = "Miden Assembly backend for the Miden compiler"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

frontend-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midenc-frontend-wasm"
33
description = "Wasm frontend for the Miden compiler"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

hir-analysis/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midenc-hir-analysis"
33
description = "Analysis passes and utilties for Miden HIR"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

hir-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midenc-hir-macros"
33
description = "Provides proc macro support for Miden IR"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

hir-symbol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midenc-hir-symbol"
33
description = "String interning for the Miden compiler"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

hir-transform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midenc-hir-transform"
33
description = "Transformation passes and utilities for Miden HIR"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

hir-type/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midenc-hir-type"
33
description = "Type system and utilities for Miden HIR"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

hir/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midenc-hir"
33
description = "High-level Intermediate Representation for Miden Assembly"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

midenc-compile/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midenc-compile"
33
description = "The compiler frontend for Miden"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

midenc-debug/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midenc-debug"
33
description = "An interactive debugger for Miden VM programs"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

midenc-driver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midenc-driver"
33
description = "The driver for midenc, the Miden compiler"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

midenc-session/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midenc-session"
33
description = "Session management for the Midenc compiler"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

midenc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "midenc"
33
description = "The compiler frontend/executable for Miden"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

sdk/alloc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "miden-sdk-alloc"
33
description = "A simple bump allocator for Miden SDK programs"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

sdk/base-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "miden-base-sys"
33
description = "Miden rollup Rust bingings and MASM library"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

sdk/sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "miden-sdk"
33
description = "Miden SDK"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

sdk/stdlib-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "miden-stdlib-sys"
33
description = "Low-level Rust bindings for the Miden standard library"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

tools/cargo-miden/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cargo-miden"
33
description = "A cargo extension to build Miden projects"
4-
version = "0.0.5"
4+
version.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
77
repository.workspace = true

0 commit comments

Comments
 (0)