Skip to content
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 codegen/masm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ smallvec.workspace = true
thiserror.workspace = true

[dev-dependencies]
# Use local paths for dev-only dependency to avoid relying on crates.io during packaging
# NOTE: Use local paths for dev-only dependency to avoid relying on crates.io during packaging
midenc-expect-test = { path = "../../tools/expect-test" }
proptest.workspace = true
midenc-log = { path = "../../midenc-log" }
Expand Down
2 changes: 1 addition & 1 deletion dialects/hir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ midenc-hir-analysis.workspace = true
midenc-hir-transform.workspace = true

[dev-dependencies]
# Use local paths for dev-only dependency to avoid relying on crates.io during packaging
# NOTE: Use local paths for dev-only dependency to avoid relying on crates.io during packaging
midenc-dialect-scf = { path = "../scf" }
midenc-expect-test = { path = "../../tools/expect-test" }
litcheck.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion dialects/scf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ midenc-hir-transform.workspace = true
bitvec.workspace = true

[dev-dependencies]
# Use local paths for dev-only dependency to avoid relying on crates.io during packaging
# NOTE: Use local paths for dev-only dependency to avoid relying on crates.io during packaging
midenc-expect-test = { path = "../../tools/expect-test" }
midenc-log = { path = "../../midenc-log" }
2 changes: 1 addition & 1 deletion frontend/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ wasmparser.workspace = true
wasmprinter = { workspace = true, optional = true }

[dev-dependencies]
# Use local paths for dev-only dependency to avoid relying on crates.io during packaging
# NOTE: Use local paths for dev-only dependency to avoid relying on crates.io during packaging
wat.workspace = true
midenc-expect-test = { path = "../../tools/expect-test" }
1 change: 1 addition & 0 deletions hir-analysis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ log.workspace = true
midenc-hir.workspace = true

[dev-dependencies]
# NOTE: Use local paths for dev-only dependency to avoid relying on crates.io during packaging
midenc-dialect-hir = { path = "../dialects/hir" }
midenc-dialect-arith = { path = "../dialects/arith" }
midenc-dialect-cf = { path = "../dialects/cf" }
Expand Down
1 change: 1 addition & 0 deletions hir-transform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ midenc-hir-analysis.workspace = true
midenc-session.workspace = true

[dev-dependencies]
# NOTE: Use local paths for dev-only dependency to avoid relying on crates.io during packaging
litcheck.workspace = true
litcheck-filecheck.workspace = true
midenc-dialect-arith = { path = "../dialects/arith" }
Expand Down
4 changes: 2 additions & 2 deletions hir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ smallvec.workspace = true
thiserror.workspace = true

[dev-dependencies]
# Use local paths for dev-only dependency to avoid relying on crates.io during packaging
# NOTE: Use local paths for dev-only dependency to avoid relying on crates.io during packaging
pretty_assertions = "1.0"
midenc-log.workspace = true
midenc-log = { path = "../midenc-log" }
1 change: 1 addition & 0 deletions midenc-log/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ jiff = { version = "0.2.3", default-features = false, features = ["std"], option
regex = { version = "1.0", default-features = false, features = ["std", "perf"], optional = true }

[dev-dependencies]
# NOTE: Use local paths for dev-only dependency to avoid relying on crates.io during packaging
snapbox = "0.6"
2 changes: 1 addition & 1 deletion sdk/base-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ wit-bindgen-core = "0.46"
wit-bindgen-rust = { version = "0.46", default-features = false }

[dev-dependencies]
# Use local paths for dev-only dependency to avoid relying on crates.io during packaging
# NOTE: Use local paths for dev-only dependency to avoid relying on crates.io during packaging
miden-protocol = { workspace = true, features = ["std"] }
1 change: 1 addition & 0 deletions sdk/field-repr/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ miden-field-repr = { path = "../repr", version = "0.10.0" }
miden-core.workspace = true

[dev-dependencies]
# NOTE: Use local paths for dev-only dependency to avoid relying on crates.io during packaging
miden-integration-tests = { path = "../../../tests/integration" }
midenc-frontend-wasm.workspace = true
midenc-session.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ sha2 = "0.10"
walkdir = "2.5.0"

[dev-dependencies]
# Use local paths for dev-only dependency to avoid relying on crates.io during packaging
# NOTE: Use local paths for dev-only dependency to avoid relying on crates.io during packaging
blake3 = "1.5"
concat-idents = "1.1"
2 changes: 1 addition & 1 deletion tools/cargo-miden/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ tempfile = "3.19"
walkdir = "2.5"

[dev-dependencies]
# Use local paths for dev-only dependency to avoid relying on crates.io during packaging
# NOTE: Use local paths for dev-only dependency to avoid relying on crates.io during packaging
miden-mast-package.workspace = true
Loading