forked from bytecodealliance/wit-bindgen
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
35 lines (31 loc) · 1.33 KB
/
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]
name = "linera-wit-bindgen-cli"
version = "0.2.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
edition = "2021"
description = "A language bindings generator for wit."
[workspace]
members = [
"crates/test-rust-wasm",
"crates/wit-bindgen-demo",
"crates/wit-component",
]
resolver = "2"
[[bin]]
name = "wit-bindgen"
test = false
[dependencies]
anyhow = "1.0"
structopt = { version = "0.3", default-features = false }
linera-wit-bindgen-core = { path = 'crates/bindgen-core' }
linera-wit-bindgen-gen-guest-rust = { path = 'crates/gen-guest-rust', features = ['structopt'] }
linera-wit-bindgen-gen-host-wasmtime-rust = { path = 'crates/gen-host-wasmtime-rust', features = ['structopt'] }
linera-wit-bindgen-gen-host-wasmtime-py = { path = 'crates/gen-host-wasmtime-py', features = ['structopt'] }
linera-wit-bindgen-gen-host-js = { path = 'crates/gen-host-js', features = ['structopt'] }
linera-wit-bindgen-gen-guest-c = { path = 'crates/gen-guest-c', features = ['structopt'] }
linera-wit-bindgen-gen-markdown = { path = 'crates/gen-markdown', features = ['structopt'] }
linera-wit-bindgen-gen-host-wasmer-rust = { path = 'crates/gen-host-wasmer-rust', features = ['structopt'] }
linera-wit-bindgen-gen-host-wasmer-py = { path = 'crates/gen-host-wasmer-py', features = ['structopt'] }
[package.metadata.wapm]
namespace = "wasmer"
abi = "wasi"