2019-02-24 23:58:15 +00:00
|
|
|
[package]
|
|
|
|
name = "wasmer-golang"
|
2019-04-22 04:03:31 +00:00
|
|
|
version = "0.3.0"
|
2019-02-24 23:58:15 +00:00
|
|
|
description = "Wasmer runtime golang implementation library"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-04-22 04:03:31 +00:00
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.3.0" }
|
2019-02-24 23:58:15 +00:00
|
|
|
lazy_static = "1.2.0"
|
|
|
|
libc = { git = "https://github.com/rust-lang/libc" }
|
|
|
|
byteorder = "1"
|
|
|
|
time = "0.1.41"
|
2019-02-28 04:01:53 +00:00
|
|
|
rand = "0.6"
|
2019-02-24 23:58:15 +00:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
rand = "0.6"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-04-22 04:03:31 +00:00
|
|
|
wasmer-clif-backend = { path = "../clif-backend", version = "0.3.0" }
|
2019-02-24 23:58:15 +00:00
|
|
|
wabt = "0.7.2"
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
glob = "0.2.11"
|