* General Cargo.toml cleanup. - Remove travis-ci attributes. - Remove "experimental" badges from actively-developed crates. - Reflow some long lines. - Use dependency features consistently. - Add readme attributes * Update WASI to the latest trunk. This notably adds a .gitignore file for the WASI directory.
22 lines
493 B
TOML
22 lines
493 B
TOML
[package]
|
|
name = "wasi-common-cbindgen"
|
|
version = "0.5.0"
|
|
authors = ["Jakub Konka <kubkon@jakubkonka.com>"]
|
|
description = "Interface generator utilities used by wasi-common"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
repository = "https://github.com/CraneStation/wasmtime"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "1.0.5", features = ["full"] }
|
|
quote = "1.0.2"
|
|
|
|
[dev-dependencies]
|
|
trybuild = "1.0.4"
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|