| 1 | [package]
|
| 2 | name = "vcpkg"
|
| 3 | version = "0.2.15"
|
| 4 | authors = ["Jim McGrath <jimmc2@gmail.com>" ]
|
| 5 | license = "MIT/Apache-2.0"
|
| 6 | repository = "https://github.com/mcgoo/vcpkg-rs"
|
| 7 | readme = "README.md"
|
| 8 | documentation = "https://docs.rs/vcpkg"
|
| 9 | description = "" "
|
| 10 | A library to find native dependencies in a vcpkg tree at build
|
| 11 | time in order to be used in Cargo build scripts.
|
| 12 | " ""
|
| 13 | keywords = ["build-dependencies" , "windows" , "macos" , "linux" ]
|
| 14 | categories = ["development-tools::build-utils" ]
|
| 15 |
|
| 16 | [dependencies]
|
| 17 |
|
| 18 | [dev-dependencies]
|
| 19 | tempdir = "0.3.7"
|
| 20 | lazy_static = "1"
|
| 21 |
|
| 22 | |