* 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.
31 lines
579 B
TOML
31 lines
579 B
TOML
[package]
|
|
name = "winx"
|
|
version = "0.5.0"
|
|
authors = ["Jakub Konka <kubkon@jakubkonka.com>"]
|
|
description = "Windows API helper library"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
repository = "https://github.com/CraneStation/wasmtime"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bitflags = "1.0"
|
|
cvt = "0.1"
|
|
|
|
[dependencies.winapi]
|
|
version = "0.3"
|
|
features = [
|
|
"std",
|
|
"errhandlingapi",
|
|
"handleapi",
|
|
"processthreadsapi",
|
|
"securitybaseapi",
|
|
"winbase",
|
|
"winerror",
|
|
"ws2def",
|
|
"fileapi",
|
|
"aclapi"
|
|
]
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|