mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
74875ed554
* Move wasmer-runtime to wasmer-runtime-core * Add the runtime library * Fix issue with macros using wasmer_runtime, fmt * Make default compiler dependency optional * Add instantiate and validate functions
12 lines
315 B
TOML
12 lines
315 B
TOML
[package]
|
|
name = "wasmer-runtime"
|
|
version = "0.1.0"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
wasmer-runtime-core = { path = "../runtime-core" }
|
|
wasmer-clif-backend = { path = "../clif-backend", optional = true }
|
|
|
|
[features]
|
|
default = ["wasmer-clif-backend"] |