winapi-i686-pc-windows-gnu-0.4.0/Cargo.toml.orig000064400000000000000000000006501322777000300174320ustar0000000000000000[package] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" authors = ["Peter Atashian "] license = "MIT/Apache-2.0" description = "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead." repository = "https://github.com/retep998/winapi-rs" keywords = ["windows"] include = ["src/*", "lib/*", "Cargo.toml", "build.rs"] build = "build.rs" winapi-i686-pc-windows-gnu-0.4.0/Cargo.toml0000644000000016640000000000000137410ustar00# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g. crates.io) dependencies # # If you believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" authors = ["Peter Atashian "] build = "build.rs" include = ["src/*", "lib/*", "Cargo.toml", "build.rs"] description = "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead." keywords = ["windows"] license = "MIT/Apache-2.0" repository = "https://github.com/retep998/winapi-rs" winapi-i686-pc-windows-gnu-0.4.0/Cargo.toml.orig0000644000000006500000000000000146720ustar00[package] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" authors = ["Peter Atashian "] license = "MIT/Apache-2.0" description = "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead." repository = "https://github.com/retep998/winapi-rs" keywords = ["windows"] include = ["src/*", "lib/*", "Cargo.toml", "build.rs"] build = "build.rs" winapi-i686-pc-windows-gnu-0.4.0/build.rs000064400000000000000000000014771322755652000162260ustar0000000000000000// Copyright © 2016-2018 winapi-rs developers // Licensed under the Apache License, Version 2.0 // or the MIT license // , at your option. // All files in the project carrying such notice may not be copied, modified, or distributed // except according to those terms. fn main() { use std::env::var; use std::path::Path; println!("cargo:rerun-if-env-changed=WINAPI_NO_BUNDLED_LIBRARIES"); if var("WINAPI_NO_BUNDLED_LIBRARIES").is_ok() { return; } if var("TARGET").map(|target| target == "i686-pc-windows-gnu").unwrap_or(false) { let dir = var("CARGO_MANIFEST_DIR").unwrap(); println!("cargo:rustc-link-search=native={}", Path::new(&dir).join("lib").display()); } } winapi-i686-pc-windows-gnu-0.4.0/src/lib.rs000064400000000000000000000006051321604165500164500ustar0000000000000000// Copyright © 2016 winapi-rs developers // Licensed under the Apache License, Version 2.0 // or the MIT license // , at your option. // All files in the project carrying such notice may not be copied, modified, or distributed // except according to those terms. #![no_std]