forked from wasmerio/wasmer-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (32 loc) · 837 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
publish = false
name = "wasmer-go"
version = "1.0.4"
authors = ["Wasmer Engineering Team <[email protected]>"]
edition = "2018"
description = "Go library to run WebAssembly binaries"
readme = "README.md"
repository = "https://github.com/wasmerio/wasmer-go"
keywords = ["golang", "extension", "webassembly"]
categories = ["wasm"]
[lib]
crate-type = ["cdylib"]
[dependencies]
wasmer-c-api = "2.0"
[features]
default = [
"wat",
"cranelift",
"universal",
"wasi",
]
wat = ["wasmer-c-api/wat"]
wasi = ["wasmer-c-api/wasi"]
engine = ["wasmer-c-api/engine"]
universal = ["wasmer-c-api/universal"]
dylib = ["wasmer-c-api/dylib"]
staticlib = ["wasmer-c-api/staticlib"]
compiler = ["wasmer-c-api/compiler"]
singlepass = ["wasmer-c-api/singlepass"]
cranelift = ["wasmer-c-api/cranelift"]
llvm = ["wasmer-c-api/llvm"]