mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
009bb67686
Bumps [lazy_static](https://github.com/rust-lang-nursery/lazy-static.rs) from 1.3.0 to 1.4.0. - [Release notes](https://github.com/rust-lang-nursery/lazy-static.rs/releases) - [Commits](https://github.com/rust-lang-nursery/lazy-static.rs/compare/1.3.0...1.4.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
52 lines
1.2 KiB
TOML
52 lines
1.2 KiB
TOML
[package]
|
|
name = "wasmer-runtime"
|
|
version = "0.6.0"
|
|
description = "Wasmer runtime library"
|
|
license = "MIT"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.6.0", optional = true }
|
|
lazy_static = "1.4.0"
|
|
memmap = "0.7.0"
|
|
|
|
[dependencies.wasmer-runtime-core]
|
|
path = "../runtime-core"
|
|
version = "0.6.0"
|
|
|
|
[dependencies.wasmer-clif-backend]
|
|
path = "../clif-backend"
|
|
version = "0.6.0"
|
|
optional = true
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.1.0"
|
|
criterion = "0.2"
|
|
wabt = "0.9.1"
|
|
|
|
[dependencies.wasmer-llvm-backend]
|
|
path = "../llvm-backend"
|
|
optional = true
|
|
|
|
[features]
|
|
default = ["cranelift", "default-backend-cranelift"]
|
|
cranelift = ["wasmer-clif-backend"]
|
|
cache = ["cranelift"]
|
|
debug = ["wasmer-clif-backend/debug", "wasmer-runtime-core/debug"]
|
|
llvm = ["wasmer-llvm-backend"]
|
|
singlepass = ["wasmer-singlepass-backend"]
|
|
default-backend-singlepass = ["singlepass"]
|
|
default-backend-llvm = ["llvm"]
|
|
default-backend-cranelift = ["cranelift"]
|
|
|
|
[[bench]]
|
|
name = "nginx"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "many_instances"
|
|
harness = false
|