uptown_funk 0.1.1

Define host functions compatible with Wasmer and Wasmtime
Documentation
[package]
name = "uptown_funk"
version = "0.1.1"
authors = ["Bernard Kolobara <me@kolobara.com>"]
edition = "2018"
description = "Define host functions compatible with Wasmer and Wasmtime"
license = "Apache-2.0/MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
default = []
vm-wasmtime = ["wasmtime", "uptown_funk_macro/vm-wasmtime"]
vm-wasmer = ["wasmer", "uptown_funk_macro/vm-wasmer", "thiserror"]
async = []

[dependencies]
smallvec = "1.5"
thiserror = {version = "1.0", optional = true}
wasmer = {version = "1.0", path = "../wasmer/lib/api", optional = true}
wasmtime = {version = "0.22", path = "../wasmtime/crates/wasmtime", optional = true}
uptown_funk_macro = { version = "0.1", path = "./uptown_funk_macro" }