tCargo.toml - wasm-runtime - A wasm runtime
HTML git clone https://git.parazyd.org/wasm-runtime
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
tCargo.toml (377B)
---
1 [package]
2 name = "smart-contract"
3 version = "0.1.0"
4 edition = "2021"
5
6 [lib]
7 crate-type = ["cdylib", "rlib"]
8
9 [dependencies]
10 borsh = "0.9.3"
11 drk-sdk = { path = "../drk-sdk" }
12
13 [dependencies.pasta_curves]
14 git = "https://github.com/parazyd/pasta_curves"
15 branch = "optional-borsh-support"
16 features = ["borsh"]
17
18 [profile.release]
19 lto = true
20 codegen-units = 1
21 overflow-checks = true