Files
wasmtime/crates/wasi-common/winx/Cargo.toml
Dan Gohman a2b4148a91 General Cargo.toml cleanup. (#529)
* 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.
2019-11-08 17:22:37 -06:00

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" }