-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
35 lines (32 loc) · 1.08 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 = "witx-codegen"
version = "0.11.3"
description = "WITX code generator for WebAssembly guest modules."
authors = ["Frank Denis <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/jedisct1/witx-codegen"
homepage = "https://github.com/jedisct1/witx-codegen"
categories = ["wasm", "api-bindings", "web-programming"]
keywords = ["witx", "webassembly", "wasm", "generator", "bindgen"]
readme = "README.md"
[dependencies]
anyhow = "1.0.82"
convert_case = "0.6.0"
structopt = "0.3.26"
strum = "0.26.2"
strum_macros = "0.26.2"
witx = { package = "witnext", version = "0.10.0-beta3" }
[package.metadata.deb]
extended-description = """\
A code generator for WITX (WebAssembly interface description language for WASI).
WITX-CodeGen generates types and function prototypes for various languages targeting
WebAssembly, from a common WITX interface description.
"""
assets = [
["target/release/witx-codegen", "usr/bin/", "755"],
["README.md", "usr/share/doc/witx-codegen/README.md", "644"]
]
section = "development"
depends = "$auto"
priority = "optional"