2019-01-22 13:02:06 -06:00
|
|
|
[package]
|
|
|
|
name = "wasmer-runtime-core"
|
2019-11-22 11:18:06 -08:00
|
|
|
version = "0.11.0"
|
2019-01-23 16:33:44 -08:00
|
|
|
description = "Wasmer runtime core library"
|
|
|
|
license = "MIT"
|
2019-01-22 13:02:06 -06:00
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
2019-01-23 16:33:44 -08:00
|
|
|
repository = "https://github.com/wasmerio/wasmer"
|
2019-11-13 15:09:18 -08:00
|
|
|
keywords = ["wasm", "webassembly", "runtime"]
|
|
|
|
categories = ["wasm"]
|
2019-01-22 13:02:06 -06:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-09-20 16:08:45 -07:00
|
|
|
nix = "0.15"
|
|
|
|
page_size = "0.4"
|
2019-09-25 23:37:39 -05:00
|
|
|
wasmparser = "0.39.1"
|
2019-09-20 16:08:45 -07:00
|
|
|
parking_lot = "0.9"
|
|
|
|
lazy_static = "1.4"
|
|
|
|
errno = "0.2"
|
2019-07-31 23:03:52 -07:00
|
|
|
libc = "0.2.60"
|
2019-09-20 16:08:45 -07:00
|
|
|
hex = "0.3"
|
|
|
|
smallvec = "0.6"
|
2019-06-25 20:01:56 +08:00
|
|
|
bincode = "1.1"
|
2019-02-06 16:26:45 -08:00
|
|
|
|
2019-08-01 01:27:21 -07:00
|
|
|
[dependencies.indexmap]
|
2019-09-20 16:08:45 -07:00
|
|
|
version = "1.2"
|
2019-08-01 01:27:21 -07:00
|
|
|
features = ["serde-1"]
|
|
|
|
|
2019-02-06 16:26:45 -08:00
|
|
|
# Dependencies for caching.
|
|
|
|
[dependencies.serde]
|
2019-09-20 16:08:45 -07:00
|
|
|
version = "1.0"
|
2019-02-21 17:09:32 -08:00
|
|
|
# This feature is required for serde to support serializing/deserializing reference counted pointers (e.g. Rc and Arc).
|
2019-02-19 15:36:22 -08:00
|
|
|
features = ["rc"]
|
2019-02-06 16:26:45 -08:00
|
|
|
[dependencies.serde_derive]
|
2019-09-20 16:08:45 -07:00
|
|
|
version = "1.0"
|
2019-02-06 16:26:45 -08:00
|
|
|
[dependencies.serde_bytes]
|
2019-09-20 16:08:45 -07:00
|
|
|
version = "0.11"
|
2019-02-06 16:26:45 -08:00
|
|
|
[dependencies.serde-bench]
|
|
|
|
version = "0.0.7"
|
2019-02-25 17:43:25 -08:00
|
|
|
[dependencies.blake2b_simd]
|
2019-09-20 16:08:45 -07:00
|
|
|
version = "0.5"
|
2019-02-22 13:02:28 -08:00
|
|
|
[dependencies.digest]
|
2019-09-20 16:08:45 -07:00
|
|
|
version = "0.8"
|
2019-02-06 16:26:45 -08:00
|
|
|
|
2019-01-22 13:02:06 -06:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-09-20 16:08:45 -07:00
|
|
|
winapi = { version = "0.3", features = ["memoryapi"] }
|
2019-01-22 13:02:06 -06:00
|
|
|
|
2019-03-23 00:27:55 -07:00
|
|
|
[build-dependencies]
|
2019-09-20 16:08:45 -07:00
|
|
|
blake2b_simd = "0.5"
|
|
|
|
rustc_version = "0.2"
|
2019-06-25 20:01:56 +08:00
|
|
|
cc = "1.0"
|
2019-03-23 00:27:55 -07:00
|
|
|
|
2019-01-22 13:02:06 -06:00
|
|
|
[features]
|
|
|
|
debug = []
|
2019-06-17 12:56:14 -07:00
|
|
|
trace = ["debug"]
|
2019-07-08 17:05:54 -07:00
|
|
|
# backend flags used in conditional compilation of Backend::variants
|
2019-07-24 17:31:59 -07:00
|
|
|
"backend-cranelift" = []
|
2019-07-09 17:57:31 -07:00
|
|
|
"backend-singlepass" = []
|
|
|
|
"backend-llvm" = []
|
2019-10-02 15:40:35 -07:00
|
|
|
managed = []
|
2019-10-07 23:07:20 +03:00
|
|
|
deterministic-execution = ["wasmparser/deterministic"]
|