2019-01-08 21:04:03 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-clif-backend"
|
2019-01-25 18:34:43 +00:00
|
|
|
version = "0.1.2"
|
2019-01-24 00:33:44 +00:00
|
|
|
description = "Wasmer runtime Cranelift compiler backend"
|
|
|
|
license = "MIT"
|
2019-01-18 00:19:31 +00:00
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
2019-01-24 00:33:44 +00:00
|
|
|
repository = "https://github.com/wasmerio/wasmer"
|
2019-01-08 21:04:03 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-01-25 18:34:43 +00:00
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.1.2" }
|
2019-01-08 21:04:03 +00:00
|
|
|
cranelift-native = "0.26.0"
|
|
|
|
cranelift-codegen = "0.26.0"
|
|
|
|
cranelift-entity = "0.26.0"
|
|
|
|
cranelift-wasm = "0.26.0"
|
|
|
|
hashbrown = "0.1"
|
|
|
|
target-lexicon = "0.2.0"
|
2019-01-09 23:31:11 +00:00
|
|
|
wasmparser = "0.23.0"
|
2019-01-11 05:37:59 +00:00
|
|
|
byteorder = "1"
|
2019-02-07 22:44:28 +00:00
|
|
|
nix = "0.13.0"
|
|
|
|
libc = "0.2.48"
|
2019-02-06 23:43:27 +00:00
|
|
|
|
2019-02-07 00:26:45 +00:00
|
|
|
# Dependencies for caching.
|
|
|
|
[dependencies.serde]
|
|
|
|
version = "1.0"
|
|
|
|
[dependencies.serde_derive]
|
|
|
|
version = "1.0"
|
|
|
|
[dependencies.serde_bytes]
|
|
|
|
version = "0.10"
|
|
|
|
[dependencies.serde-bench]
|
|
|
|
version = "0.0.7"
|
|
|
|
|
2019-02-14 17:58:33 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["errhandlingapi", "minwindef", "minwinbase", "winnt"] }
|
|
|
|
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.0.1" }
|
|
|
|
|
2019-02-06 23:43:27 +00:00
|
|
|
[features]
|
2019-02-14 17:58:33 +00:00
|
|
|
debug = ["wasmer-runtime-core/debug"]
|