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
103 changes: 31 additions & 72 deletions Cargo.lock

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

7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ members = [
]
exclude = [
"sdk/.cargo",
"tests/rust-apps-wasm",
"cargo-ext/tests/data",
"tests/",
"examples",
]

Expand Down Expand Up @@ -92,7 +91,9 @@ miette = { package = "miden-miette", version = "7.1.1" }
paste = "1.0"
parking_lot = "0.12"
parking_lot_core = "0.9"
petgraph = "0.6"
petgraph = { version = "0.8", default-features = false, features = [
"graphmap"
] }
pretty_assertions = "1.0"
proptest = "1.4"
proc-macro2 = "1.0"
Expand Down
2 changes: 0 additions & 2 deletions benches/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ path = "src/is_prime.rs"
[dependencies]
anyhow.workspace = true
clap.workspace = true
serde = { workspace = true, features = ["std"] }
toml.workspace = true

[dev-dependencies]
criterion = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion codegen/masm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition.workspace = true

[features]
default = ["std"]
std = ["midenc-hir/std", "midenc-dialect-hir/std"]
std = ["midenc-hir/std", "midenc-dialect-hir/std", "petgraph/std"]

[dependencies]
inventory.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion codegen/masm/src/opt/operands/tactics/linear.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ impl Tactic for Linear {
be moved to make space for {:?}",
root.value
);
let mut seen = std::collections::BTreeSet::default();
let mut seen = alloc::collections::BTreeSet::default();
seen.insert(root);
while let Some(parent_operand) = parent {
root = parent_operand;
Expand Down
1 change: 0 additions & 1 deletion dialects/hir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,5 @@ midenc-hir-transform.workspace = true

[dev-dependencies]
# 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" }
env_logger.workspace = true
2 changes: 0 additions & 2 deletions hir-analysis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,8 @@ log.workspace = true
midenc-hir.workspace = true

[dev-dependencies]
pretty_assertions = "1.0"
midenc-dialect-hir = { path = "../dialects/hir" }
midenc-dialect-arith = { path = "../dialects/arith" }
midenc-dialect-cf = { path = "../dialects/cf" }
midenc-dialect-scf = { path = "../dialects/scf" }
midenc-expect-test = { path = "../tools/expect-test" }
env_logger.workspace = true
8 changes: 0 additions & 8 deletions tests/integration-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ publish = false

[dependencies]
anyhow.workspace = true
cargo-miden.workspace = true
fs2 = "0.4"
miden-client = { version = "0.11", features = [
"tonic",
Expand All @@ -22,18 +21,11 @@ miden-client = { version = "0.11", features = [
miden-core.workspace = true
miden-mast-package.workspace = true
miden-objects = { workspace = true, features = ["std"] }
midenc-debug.workspace = true
midenc-frontend-wasm.workspace = true
midenc-session.workspace = true
proptest.workspace = true
rand = "0.9"
temp-dir = "0.1"
tokio.workspace = true
uuid = { version = "1.10", features = ["v4"] }

# For accessing the test builder from the main integration tests
miden-integration-tests = { path = "../integration" }

[dev-dependencies]
# Use local paths for dev-only dependency to avoid relying on crates.io during packaging
midenc-expect-test = { path = "../../tools/expect-test" }
Loading