mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-14 14:45:40 +00:00
ad70caff83
When the colored output was originally added in https://github.com/wasmerio/wasmer/pull/489 and there was a discussion then about that it should ideally be in a higher-level crate rather than in the runtime-core library crate. I agree with that, users of the library shouldn't be required to bring in the colored crate dependency and ideally also not have stdout/stderr output either, that should be controlled by the application that uses wasmer-runtime-core, not the library. Disabling stdout/stderr output would be more intrusive but I wanted to at least not have colored output and another crate dependency so this change removes the colored output and the "colored" crate.
60 lines
1.3 KiB
TOML
60 lines
1.3 KiB
TOML
[package]
|
|
name = "wasmer-runtime-core"
|
|
version = "0.7.0"
|
|
description = "Wasmer runtime core library"
|
|
license = "MIT"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
nix = "0.15.0"
|
|
page_size = "0.4.1"
|
|
wasmparser = "0.35.1"
|
|
parking_lot = "0.9.0"
|
|
lazy_static = "1.4.0"
|
|
errno = "0.2.4"
|
|
libc = "0.2.60"
|
|
hex = "0.3.2"
|
|
smallvec = "0.6.10"
|
|
bincode = "1.1"
|
|
|
|
[dependencies.indexmap]
|
|
version = "1.2.0"
|
|
features = ["serde-1"]
|
|
|
|
# Dependencies for caching.
|
|
[dependencies.serde]
|
|
version = "1.0.99"
|
|
# This feature is required for serde to support serializing/deserializing reference counted pointers (e.g. Rc and Arc).
|
|
features = ["rc"]
|
|
[dependencies.serde_derive]
|
|
version = "1.0.98"
|
|
[dependencies.serde_bytes]
|
|
version = "0.11.2"
|
|
[dependencies.serde-bench]
|
|
version = "0.0.7"
|
|
[dependencies.blake2b_simd]
|
|
version = "0.5.8"
|
|
[dependencies.digest]
|
|
version = "0.8.1"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3.8", features = ["memoryapi"] }
|
|
|
|
[dev-dependencies]
|
|
field-offset = "0.1.1"
|
|
|
|
[build-dependencies]
|
|
blake2b_simd = "0.5.8"
|
|
rustc_version = "0.2.3"
|
|
cc = "1.0"
|
|
|
|
[features]
|
|
debug = []
|
|
trace = ["debug"]
|
|
# backend flags used in conditional compilation of Backend::variants
|
|
"backend-cranelift" = []
|
|
"backend-singlepass" = []
|
|
"backend-llvm" = []
|
|
managed = [] |