wasmer/lib/clif-backend/Cargo.toml

40 lines
1.0 KiB
TOML
Raw Normal View History

[package]
name = "wasmer-clif-backend"
2019-05-06 18:02:39 -07:00
version = "0.4.1"
2019-01-23 16:33:44 -08:00
description = "Wasmer runtime Cranelift compiler backend"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
2019-01-23 16:33:44 -08:00
repository = "https://github.com/wasmerio/wasmer"
edition = "2018"
[dependencies]
2019-05-06 18:02:39 -07:00
wasmer-runtime-core = { path = "../runtime-core", version = "0.4.1" }
2019-04-03 00:13:40 -05:00
cranelift-native = "0.30.0"
cranelift-codegen = "0.30.0"
cranelift-entity = "0.30.0"
cranelift-wasm = "0.30.0"
hashbrown = "0.1"
2019-04-03 00:13:40 -05:00
target-lexicon = "0.3.0"
wasmparser = "0.29.2"
2019-01-10 21:37:59 -08:00
byteorder = "1"
2019-02-07 14:44:28 -08:00
nix = "0.13.0"
2019-02-25 13:28:37 -08:00
libc = "0.2.49"
2019-02-25 12:03:48 -08:00
rayon = "1.0"
# 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"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["errhandlingapi", "minwindef", "minwinbase", "winnt"] }
2019-05-06 18:02:39 -07:00
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.4.1" }
[features]
debug = ["wasmer-runtime-core/debug"]