-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
40 lines (35 loc) · 978 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "ontio-wasmjit"
version = "0.1.0"
authors = ["laizy <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "wasmjit"
path = "src/main.rs"
[lib]
crate-type = ["lib", "staticlib", "cdylib"]
[dependencies]
cranelift-codegen = "0.49.0"
cranelift-wasm = "0.49.0"
cranelift-frontend = "0.49.0"
target-lexicon = "0.9"
wat = "1.0.0"
ontio-wasmjit-environ = {path="./wasmjit-environ"}
ontio-wasmjit-runtime = {path="./wasmjit-runtime"}
capstone = "0.6.0"
dynasmrt = "0.5.1"
rand = "*"
cranelift-entity = "0.49.0"
env_logger = "0.7.1"
hmac-sha256 = "0.1.2"
lru = "0.4.0"
once_cell = "1.2.0"
ripemd160 = "0.8.0"
parking_lot = "0.9.0"
failure = "0.1.6"
[dev-dependencies]
parity-wasm = "0.41.0"
wasmi = {git = "https://github.com/lucas7788/wasmi.git"}
[workspace]
members = [ "wasmjit-environ", "wasmjit-runtime", "wasmjit-harness", "wasmjit-capi", "wasmjit-onto-interface"]