wasmer/lib/clif-backend/Cargo.toml

41 lines
1.5 KiB
TOML
Raw Normal View History

[package]
name = "wasmer-clif-backend"
2019-07-05 20:35:55 +00:00
version = "0.5.4"
2019-01-24 00:33:44 +00:00
description = "Wasmer runtime Cranelift compiler backend"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
2019-01-24 00:33:44 +00:00
repository = "https://github.com/wasmerio/wasmer"
edition = "2018"
[dependencies]
2019-07-05 20:35:55 +00:00
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.4" }
2019-07-02 17:00:19 +00:00
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"
2019-05-18 21:31:08 +00:00
target-lexicon = "0.4.0"
2019-07-02 17:00:19 +00:00
wasmparser = "0.32.1"
2019-01-11 05:37:59 +00:00
byteorder = "1"
2019-02-07 22:44:28 +00:00
nix = "0.13.0"
2019-02-25 21:28:37 +00:00
libc = "0.2.49"
2019-02-25 20:03:48 +00: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-07-05 20:35:55 +00:00
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.5.4" }
[features]
debug = ["wasmer-runtime-core/debug"]