wasm-runtime

A wasm runtime
git clone https://git.parazyd.org/wasm-runtime
Log | Files | Refs | README | LICENSE

Cargo.toml (596B)


      1 [package]
      2 name = "wasm-runtime"
      3 version = "0.1.0"
      4 edition = "2021"
      5 
      6 [workspace]
      7 members = ["drk-sdk"]
      8 exclude = ["smart-contract"]
      9 
     10 #[profile.release]
     11 #lto = true
     12 #codegen-units = 1
     13 #overflow-checks = true
     14 
     15 [dependencies]
     16 anyhow = "1.0.55"
     17 drk-sdk = { path = "./drk-sdk" }
     18 thiserror = "1.0.30"
     19 wasmer = "2.2.0"
     20 wasmer-compiler-singlepass = "2.2.0"
     21 wasmer-middlewares = "2.2.0"
     22 
     23 [dev-dependencies]
     24 borsh = "0.9.3"
     25 smart-contract = { path = "./smart-contract" }
     26 
     27 [dev-dependencies.pasta_curves]
     28 git = "https://github.com/parazyd/pasta_curves"
     29 branch = "optional-borsh-support"
     30 features = ["borsh"]