Skip to content

Commit

Permalink
Merge pull request #252 from 0xPolygonMiden/release-plz-2024-Jul-19
Browse files Browse the repository at this point in the history
chore: fix `categories` and add `version` to all deps in workspace Cargo.toml
  • Loading branch information
bitwalker authored Jul 22, 2024
2 parents 44e2d38 + 9f6ae65 commit cc889c4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
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.

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ description = "An intermediate representation and compiler for Miden Assembly"
repository = "https://github.com/0xPolygonMiden/compiler"
homepage = "https://github.com/0xPolygonMiden/compiler"
documentation = "https://github.com/0xPolygonMiden/compiler"
categories = ["Compilers"]
categories = ["compilers"]
keywords = ["compiler", "miden"]
license = "MIT"
readme = "README.md"
Expand Down Expand Up @@ -71,20 +71,20 @@ miden-assembly = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "2d
miden-core = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "2da11ad0a975d2e5d6a2582871f0c89b820b3ffa" }
miden-processor = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "2da11ad0a975d2e5d6a2582871f0c89b820b3ffa" }
miden-stdlib = { git = "https://github.com/0xPolygonMiden/miden-vm", rev = "2da11ad0a975d2e5d6a2582871f0c89b820b3ffa" }
midenc-codegen-masm = { path = "codegen/masm" }
midenc-codegen-masm = { version = "0.0.1", path = "codegen/masm" }
miden-diagnostics = "0.1"
midenc-hir = { path = "hir" }
midenc-hir-analysis = { path = "hir-analysis" }
midenc-hir-macros = { path = "hir-macros" }
midenc-hir-symbol = { path = "hir-symbol" }
midenc-hir-transform = { path = "hir-transform" }
midenc-hir-type = { path = "hir-type" }
midenc-hir = { version = "0.0.1", path = "hir" }
midenc-hir-analysis = { version = "0.0.1", path = "hir-analysis" }
midenc-hir-macros = { version = "0.0.1", path = "hir-macros" }
midenc-hir-symbol = { version = "0.0.1", path = "hir-symbol" }
midenc-hir-transform = { version = "0.0.1", path = "hir-transform" }
midenc-hir-type = { version = "0.0.1", path = "hir-type" }
miden-parsing = "0.1"
midenc-frontend-wasm = { path = "frontend-wasm" }
midenc-compile = { path = "midenc-compile" }
midenc-driver = { path = "midenc-driver" }
midenc-session = { path = "midenc-session" }
miden-integration-tests = { path = "tests/integration" }
midenc-frontend-wasm = { version = "0.0.1", path = "frontend-wasm" }
midenc-compile = { version = "0.0.1", path = "midenc-compile" }
midenc-driver = { version = "0.0.1", path = "midenc-driver" }
midenc-session = { version = "0.0.1", path = "midenc-session" }
miden-integration-tests = { version = "0.0.0", path = "tests/integration" }
wat = "1.0.69"
blake3 = "1.5"

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.0"
version = "0.0.1"
rust-version.workspace = true
authors.workspace = true
repository.workspace = true
Expand Down

0 comments on commit cc889c4

Please sign in to comment.