mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
40 lines
1.0 KiB
TOML
40 lines
1.0 KiB
TOML
[package]
|
|
name = "wasmer-clif-backend"
|
|
version = "0.4.2"
|
|
description = "Wasmer runtime Cranelift compiler backend"
|
|
license = "MIT"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.4.2" }
|
|
cranelift-native = "0.30.0"
|
|
cranelift-codegen = "0.30.0"
|
|
cranelift-entity = "0.30.0"
|
|
cranelift-wasm = "0.30.0"
|
|
hashbrown = "0.1"
|
|
target-lexicon = "0.3.0"
|
|
wasmparser = "0.29.2"
|
|
byteorder = "1"
|
|
nix = "0.13.0"
|
|
libc = "0.2.49"
|
|
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"] }
|
|
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.4.2" }
|
|
|
|
[features]
|
|
debug = ["wasmer-runtime-core/debug"]
|