* Add versions to the crates. This is needed for publishing on crates.io. * Add a few Cargo.toml attributes to make the crates.io page friendlier.
13 lines
415 B
TOML
13 lines
415 B
TOML
[package]
|
|
name = "winx"
|
|
version = "0.4.0"
|
|
authors = ["Jakub Konka <kubkon@jakubkonka.com>"]
|
|
edition = "2018"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
description = "Windows API helper library"
|
|
|
|
[dependencies]
|
|
winapi = { version = "0.3", features = ["std", "errhandlingapi", "handleapi", "processthreadsapi", "securitybaseapi", "winbase", "winerror", "ws2def", "fileapi", "aclapi" ] }
|
|
bitflags = "1.0"
|
|
cvt = "0.1"
|