mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
41 lines
1.5 KiB
TOML
41 lines
1.5 KiB
TOML
[package]
|
|
name = "wasmer-clif-backend"
|
|
version = "0.5.3"
|
|
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.5.3" }
|
|
cranelift-native = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" }
|
|
cranelift-codegen = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" }
|
|
cranelift-entity = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" }
|
|
cranelift-frontend = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" }
|
|
cranelift-wasm = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" }
|
|
hashbrown = "0.1"
|
|
target-lexicon = "0.4.0"
|
|
wasmparser = "0.32.1"
|
|
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.5.3" }
|
|
|
|
[features]
|
|
debug = ["wasmer-runtime-core/debug"]
|