forked from wasm3/wasm3-rs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
41 lines (32 loc) · 777 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
36
37
38
39
40
41
[package]
name = "wasm3"
version = "0.2.0"
authors = ["Lukas Tobias Wirth <lukastw97@gmail.com>"]
edition = "2018"
description = "Rust bindings for wasm3"
homepage = "https://github.com/wasm3/wasm3-rs"
repository = "https://github.com/wasm3/wasm3-rs"
license = "MIT"
readme = "README.md"
categories = ["api-bindings"]
exclude = ["examples/*", "tests/*"]
[features]
default = ["wasi", "std", "use-32bit-slots"]
wasi = ["ffi/wasi"]
std = []
use-32bit-slots = ["ffi/use-32bit-slots"]
build-bindgen = ["ffi/build-bindgen"]
[profile.release]
opt-level = 3
lto = true
[dependencies]
cty = "0.2"
[dependencies.ffi]
path = "wasm3-sys"
package = "wasm3-sys"
[dev-dependencies]
trybuild = "1.0"
[package.metadata.docs.rs]
all-features = true
[workspace]
members = ["wasm3-sys"]