Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
6532ad6
wip: update vm to 0.18
bitwalker Sep 16, 2025
3c9eaf1
build: switch workspace crates to crates.io version of midenc-hir-type
bitwalker Sep 17, 2025
ed9f2ec
driver: split out midenc-debug into separate repo, simplify driver
bitwalker Oct 3, 2025
a6c4d68
migrate to 0.19
bitwalker Nov 11, 2025
df06b54
chore: clippy and formatting
greenhat Nov 11, 2025
84aa1ed
chore: more formatting and clippy
greenhat Nov 11, 2025
e058d01
refactor: add `--single-branch` when cloning a template git repo
greenhat Nov 11, 2025
2260859
chore: run local network tests sequentially
greenhat Nov 11, 2025
a43e554
chore: run `cargo update`
greenhat Nov 11, 2025
6db40da
chore: more clippy
greenhat Nov 11, 2025
ed10866
fix: remove midenc-hir-type from workspace deps
bitwalker Nov 11, 2025
a4ab385
chore: split midenc-hir-type into its own repo
bitwalker Nov 11, 2025
8ad47d3
Merge pull request #681 from 0xMiden/bitwalker/miden-vm-0.18
bitwalker Nov 12, 2025
0d4e4e7
feature: add `miden-base` MASM bindings for `account`, `tx`, `faucet`,
greenhat Nov 12, 2025
bf40530
refactor!: split `account` into `active_account` and `native_account`…
greenhat Nov 12, 2025
61d9b20
feature: fix `sha256::hash_1to1` bindings (big-endian),
greenhat Nov 6, 2025
9ea5411
feature: add stdlib `hash_2to1` for SHA256 and Blake3 to SDK bindings
greenhat Nov 7, 2025
234b030
feature: add stdlib `std::collections::smt` bindings to the SDK
greenhat Nov 10, 2025
31c7664
chore: fix after rebase (new VM version)
greenhat Nov 12, 2025
b2985a9
chore: add `trim-paths` in bindings tests
greenhat Nov 12, 2025
f9f6614
Merge pull request #759 from 0xMiden/greenhat/i158-stdlib-bindings
bitwalker Nov 12, 2025
d6551ed
Merge pull request #753 from 0xMiden/greenhat/i159-base-bindings
bitwalker Nov 12, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,9 @@ jobs:
fi
- name: Test
run: |
cargo make test -E 'package(miden-integration-node-tests)'
# Run sequentially as a workaround until
# https://github.com/0xMiden/compiler/issues/766 is resolved
cargo make test -E 'package(miden-integration-node-tests)' --test-threads 1

cargo_publish_dry_run:
name: cargo publish dry run
Expand Down
21 changes: 3 additions & 18 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'midenc_frontend_wasm2'",
"name": "Debug unit tests in library 'midenc_frontend_wasm'",
"cargo": {
"args": ["test", "--no-run", "--lib", "--package=midenc-frontend-wasm2"],
"args": ["test", "--no-run", "--lib", "--package=midenc-frontend-wasm"],
"filter": {
"name": "midenc_frontend_wasm2",
"name": "midenc_frontend_wasm",
"kind": "lib"
}
},
Expand Down Expand Up @@ -169,21 +169,6 @@
"cwd": "${workspaceFolder}",
"sourceLanguages": ["rust"]
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'midenc_debug'",
"cargo": {
"args": ["test", "--no-run", "--lib", "--package=midenc-debug"],
"filter": {
"name": "midenc_debug",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}",
"sourceLanguages": ["rust"]
},
{
"type": "lldb",
"request": "launch",
Expand Down
Loading