Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

updated cw and wasmi deps, cleanup #35

Merged
merged 11 commits into from
Jun 8, 2023
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ flamegraph.svg
*.log
*.data
*.data.old
.vscode/
146 changes: 84 additions & 62 deletions Cargo.lock

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

16 changes: 16 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,19 @@
members = ["vm", "vm-wasmi", "orchestrate"]
exclude = ["fixtures/recursion-test"]
resolver = "2"


[workspace.dependencies]
cosmwasm-std = { git = "https://github.com/dzmitry-lahoda-forks/cosmwasm", rev = "677fa9c04b07a4934db82a6a9aa9e68fa13fcff9", default-features = false, features = [
"iterator",
"cosmwasm_1_2",
] }
cosmwasm-crypto = { git = "https://github.com/dzmitry-lahoda-forks/cosmwasm", rev = "677fa9c04b07a4934db82a6a9aa9e68fa13fcff9" }

serde = { version = "1", default-features = false, features = ["derive"] }
serde_json = { version = "1", default-features = false, features = ["alloc"] }
log = { version = "0.4", default-features = false }
num = { version = "0.4", default-features = false }
wasmi = { version = "0.30", default-features = false }
wasm-instrument = { version = "0.4.0", default-features = false }
wasmi-validation = { version = "0.5.0", default-features = false }
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

# CosmWasm VM

Experimental, minimalistic, `no_std` friendly abstract virtual machine for CosmWasm contracts execution.
Expand Down Expand Up @@ -25,3 +26,10 @@ Install `flamegraph` (in nix shell already installed)

Modify `research.rs` as needed.

## Authors
"Hussein Ait Lahcen [email protected]"
"Abdullah Eryuzlu [email protected]"
"Composable Developers"
## homepage

https://composable.finance
Loading