Vendor dependencies

Let's see how I like this workflow.
This commit is contained in:
John Doty 2022-12-19 08:27:18 -08:00
parent 34d1830413
commit 9c435dc440
7500 changed files with 1665121 additions and 99 deletions

View file

@ -0,0 +1 @@
{"files":{"Cargo.toml":"ea5ff3018612556d83043504bd44e13d8bc7ee43c1b297074c1d06297f691421","build.rs":"d5df812ba7add22771644473db37d7de40c1e7479a30f81ae3ccb0d7be3fabe4","lib/windows.lib":"681582c111d54f91641ee98c51ee51fa0f3dc865a7d1b57991ba8887102ba205","src/lib.rs":"bdf6c7cf1fc01f69cc1d4e52948d1f246fdd310e6323d5dd1efd23f1daf382ef"},"package":"84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"}

23
vendor/windows_i686_msvc/Cargo.toml vendored Normal file
View file

@ -0,0 +1,23 @@
# 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 are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2018"
name = "windows_i686_msvc"
version = "0.42.0"
authors = ["Microsoft"]
description = "Code gen support for the windows crate"
license = "MIT OR Apache-2.0"
repository = "https://github.com/microsoft/windows-rs"
[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
targets = []

10
vendor/windows_i686_msvc/build.rs vendored Normal file
View file

@ -0,0 +1,10 @@
fn main() {
let target = std::env::var("TARGET").unwrap();
if target != "i686-pc-windows-msvc" && target != "i686-uwp-windows-msvc" {
return;
}
let dir = std::env::var("CARGO_MANIFEST_DIR").unwrap();
println!("cargo:rustc-link-search=native={}", std::path::Path::new(&dir).join("lib").display());
}

BIN
vendor/windows_i686_msvc/lib/windows.lib vendored Normal file

Binary file not shown.

1
vendor/windows_i686_msvc/src/lib.rs vendored Normal file
View file

@ -0,0 +1 @@
#![no_std]