2019-02-14 09:58:33 -08:00
|
|
|
[package]
|
|
|
|
name = "wasmer-win-exception-handler"
|
2019-12-18 17:24:29 -05:00
|
|
|
version = "0.12.0"
|
2019-02-14 09:58:33 -08: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-12-18 17:24:29 -05:00
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.12.0" }
|
2019-09-02 09:11:48 +00:00
|
|
|
winapi = { version = "0.3.8", features = ["winbase", "errhandlingapi", "minwindef", "minwinbase", "winnt"] }
|
2019-07-31 23:03:52 -07:00
|
|
|
libc = "0.2.60"
|
2019-02-14 09:58:33 -08:00
|
|
|
|
|
|
|
[build-dependencies]
|
2019-10-23 13:40:35 -07:00
|
|
|
cmake = "0.1"
|