2019-02-14 17:58:33 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-win-exception-handler"
|
2019-10-02 22:40:35 +00:00
|
|
|
version = "0.8.0"
|
2019-02-14 17:58:33 +00:00
|
|
|
description = "Wasmer runtime exception handling for Windows"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-10-02 22:40:35 +00:00
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.8.0" }
|
2019-09-02 09:11:48 +00:00
|
|
|
winapi = { version = "0.3.8", features = ["winbase", "errhandlingapi", "minwindef", "minwinbase", "winnt"] }
|
2019-08-01 06:03:52 +00:00
|
|
|
libc = "0.2.60"
|
2019-02-14 17:58:33 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2019-09-20 23:08:45 +00:00
|
|
|
cmake = "0.1"
|
|
|
|
bindgen = "0.51"
|
|
|
|
regex = "1.2"
|