deno/build_extra/rust/BUILD.gn

2219 lines
47 KiB
Plaintext

# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
# Dependencies between third party crates is mapped out here manually. This is
# not so difficult and having it be tedious to add dependencies might help us
# avoid dependency hell later on. Always try to minimize dependencies.
# Versioning for third party rust crates is controlled in //Cargo.toml
# Use //tools/sync_third_party.py instead of running "cargo install".
import("rust.gni")
cargo_home = "//third_party/rust_crates"
rust_rlib("aho_corasick") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.3/src/lib.rs"
features = [
"default",
"memchr",
"std",
]
extern_rlib = [ "memchr" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("ansi_term") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
if (is_win) {
extern_rlib = [ "winapi" ]
}
}
rust_rlib("arrayvec") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.4.10/src/lib.rs"
extern_rlib = [ "nodrop" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("atty") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/atty-0.2.11/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
if (is_posix) {
extern_rlib = [ "libc" ]
}
if (is_win) {
extern_rlib = [ "winapi" ]
}
}
rust_rlib("base64") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/src/lib.rs"
extern_rlib = [ "byteorder" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("bitflags") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/bitflags-1.0.4/src/lib.rs"
features = [ "default" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("byteorder") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.1/src/lib.rs"
features = [
"default",
"std",
]
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
cfg = [ "byteorder_i128" ]
}
rust_rlib("bytes") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/bytes-0.4.12/src/lib.rs"
extern_rlib = [
"byteorder",
"iovec",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("cfg_if") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.7/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("clap") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/clap-2.33.0/src/lib.rs"
features = [
"ansi_term",
"atty",
"color",
"default",
"strsim",
"suggestions",
"vec_map",
]
extern_rlib = [
"atty",
"bitflags",
"strsim",
"textwrap",
"unicode_width",
"vec_map",
]
args = [
"--cap-lints",
"allow",
]
if (is_posix) {
extern_rlib += [ "ansi_term" ]
}
}
rust_rlib("crossbeam_deque") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.7.1/src/lib.rs"
extern_rlib = [
"crossbeam_epoch",
"crossbeam_utils",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("crossbeam_epoch") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.7.1/src/lib.rs"
features = [
"crossbeam-utils",
"default",
"lazy_static",
"std",
]
extern_rlib = [
"arrayvec",
"cfg_if",
"crossbeam_utils",
"lazy_static",
"memoffset",
"scopeguard",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("crossbeam_queue") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/crossbeam-queue-0.1.2/src/lib.rs"
extern_rlib = [ "crossbeam_utils" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("crossbeam_utils") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.6.5/src/lib.rs"
features = [
"default",
"lazy_static",
"std",
]
extern_rlib = [
"cfg_if",
"lazy_static",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("ct_logs") {
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ct-logs-0.5.1/src/lib.rs"
extern_rlib = [ "sct" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("dirs") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/dirs-1.0.5/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
if (is_posix) {
extern_rlib = [ "libc" ]
}
if (is_win) {
extern_rlib = [ "winapi" ]
}
}
rust_rlib("flatbuffers") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/flatbuffers-0.6.0/src/lib.rs"
extern_rlib = [ "smallvec" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("fnv") {
edition = "2015"
source_root =
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.6/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("futures") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/futures-0.1.27/src/lib.rs"
features = [
"default",
"use_std",
"with-deprecated",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("futures_cpupool") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/futures-cpupool-0.1.8/src/lib.rs"
features = [
"default",
"futures",
"with-deprecated",
]
extern_rlib = [
"futures",
"num_cpus",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("h2") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/h2-0.1.18/src/lib.rs"
extern_rlib = [
"byteorder",
"bytes",
"fnv",
"futures",
"http",
"indexmap",
"log",
"slab",
"string",
"tokio_io",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("http") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/http-0.1.17/src/lib.rs"
extern_rlib = [
"bytes",
"fnv",
"itoa",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("httparse") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.3/src/lib.rs"
features = [
"default",
"std",
]
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
cfg = [ "httparse_simd" ]
}
rust_rlib("hyper") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/hyper-0.12.28/src/lib.rs"
features = [
"__internal_flaky_tests",
"default",
"futures-cpupool",
"net2",
"runtime",
"tokio",
"tokio-executor",
"tokio-reactor",
"tokio-tcp",
"tokio-threadpool",
"tokio-timer",
]
extern_rlib = [
"bytes",
"futures",
"futures_cpupool",
"h2",
"http",
"httparse",
"iovec",
"itoa",
"log",
"net2",
"time",
"tokio",
"tokio_executor",
"tokio_io",
"tokio_reactor",
"tokio_tcp",
"tokio_threadpool",
"tokio_timer",
"want",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("hyper_rustls") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/hyper-rustls-0.16.1/src/lib.rs"
features = [
"ct-logs",
"default",
"hyper",
"tokio-runtime",
"webpki-roots",
]
extern_rlib = [
"bytes",
"ct_logs",
"futures",
"hyper",
"rustls",
"tokio_io",
"tokio_rustls",
"webpki",
"webpki_roots",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("idna") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/idna-0.1.5/src/lib.rs"
extern_rlib = [
"matches",
"unicode_bidi",
"unicode_normalization",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("indexmap") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/indexmap-1.0.2/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("integer_atomics") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/integer-atomics-1.0.2/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("iovec") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/iovec-0.1.2/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
if (is_posix) {
extern_rlib = [ "libc" ]
}
if (is_win) {
extern = [
{
label = ":winapi-0.2.8"
crate_name = "winapi"
crate_type = "rlib"
crate_version = "0.2.8"
},
]
}
}
rust_rlib("itoa") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.4/src/lib.rs"
features = [
"default",
"std",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("lazy_static") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.3.0/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("lazycell") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/lazycell-1.2.1/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("libc") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/libc-0.2.54/src/lib.rs"
features = [
"default",
"use_std",
]
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
cfg = [
"libc_align",
"libc_const_size_of",
"libc_core_cvoid",
"libc_packedN",
"libc_priv_mod_use",
"libc_union",
]
}
rust_rlib("lock_api") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/lock_api-0.1.5/src/lib.rs"
extern_rlib = [
"scopeguard",
## Override: avoid dependency on on 'owning_ref'.
# "owning_ref",
]
args = [
"--cap-lints",
"allow",
]
## Override: avoid dependency on on 'owning_ref'.
# features = [ "owning_ref" ]
}
rust_rlib("log") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/log-0.4.6/src/lib.rs"
extern_rlib = [ "cfg_if" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("matches") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/matches-0.1.8/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("memchr") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/memchr-2.2.0/src/lib.rs"
features = [
"default",
"use_std",
]
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
cfg = [
"memchr_runtime_avx",
"memchr_runtime_simd",
"memchr_runtime_sse2",
"memchr_runtime_sse42",
]
}
rust_rlib("memoffset") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/memoffset-0.2.1/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("mio") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/mio-0.6.16/src/lib.rs"
features = [
"default",
"with-deprecated",
]
extern_rlib = [
"iovec",
"lazycell",
"log",
"net2",
"slab",
]
args = [
"--cap-lints",
"allow",
]
if (is_posix) {
extern_rlib += [ "libc" ]
}
if (is_win) {
extern_rlib += [ "kernel32" ]
extern = [
{
label = ":miow-0.2.1"
crate_name = "miow"
crate_type = "rlib"
crate_version = "0.2.1"
},
{
label = ":winapi-0.2.8"
crate_name = "winapi"
crate_type = "rlib"
crate_version = "0.2.8"
},
]
}
}
rust_rlib("net2") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/net2-0.2.33/src/lib.rs"
features = [
"default",
"duration",
]
extern_rlib = [ "cfg_if" ]
args = [
"--cap-lints",
"allow",
]
if (is_posix) {
extern_rlib += [ "libc" ]
}
if (is_win) {
extern_rlib += [ "winapi" ]
}
}
rust_rlib("nodrop") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/nodrop-0.1.13/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("num_cpus") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.10.0/src/lib.rs"
extern_rlib = [ "libc" ]
args = [
"--cap-lints",
"allow",
]
}
## Override: avoid dependency on on 'owning_ref'.
# rust_rlib("owning_ref") {
# edition = "2015"
# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/owning_ref-0.4.0/src/lib.rs"
# extern_rlib = [ "stable_deref_trait" ]
# args = [
# "--cap-lints",
# "allow",
# ]
# }
rust_rlib("parking_lot") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.7.1/src/lib.rs"
features = [
"default",
"lock_api",
## Override: avoid dependency on on 'owning_ref'.
# "owning_ref",
]
extern_rlib = [
"lock_api",
"parking_lot_core",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("parking_lot_core") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.4.0/src/lib.rs"
extern_rlib = [
"rand",
"smallvec",
]
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
cfg = [ "has_localkey_try_with" ]
if (is_posix) {
extern_rlib += [ "libc" ]
}
if (is_win) {
extern_rlib += [ "winapi" ]
}
}
rust_rlib("percent_encoding") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/percent-encoding-1.0.1/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("rand") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/src/lib.rs"
features = [
"alloc",
"default",
"rand_core",
"rand_jitter",
"rand_os",
"std",
]
extern_rlib = [
"rand_chacha",
"rand_core",
"rand_hc",
"rand_isaac",
"rand_jitter",
"rand_os",
"rand_pcg",
"rand_xorshift",
]
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
cfg = [
"rustc_1_25",
"rustc_1_26",
"rustc_1_27",
]
if (is_posix) {
extern_rlib += [ "libc" ]
}
if (is_win) {
extern_rlib += [ "winapi" ]
}
}
rust_rlib("rand_chacha") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
cfg = [ "rustc_1_26" ]
# Override: use rand_core v0.4.0 instead of v0.3.1.
extern_rlib = [ "rand_core" ]
## Override: use rand_core v0.4.0 instead of v0.3.1.
# extern = [
# {
# label = ":rand_core-0.3.1"
# crate_name = "rand_core"
# crate_type = "rlib"
# crate_version = "0.3.1"
# },
# ]
}
rust_rlib("rand_core") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.0/src/lib.rs"
features = [
"alloc",
"std",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("rand_hc") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_hc-0.1.0/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
# Override: use rand_core v0.4.0 instead of v0.3.1.
extern_rlib = [ "rand_core" ]
## Override: use rand_core v0.4.0 instead of v0.3.1.
# extern = [
# {
# label = ":rand_core-0.3.1"
# crate_name = "rand_core"
# crate_type = "rlib"
# crate_version = "0.3.1"
# },
# ]
}
rust_rlib("rand_isaac") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_isaac-0.1.1/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
# Override: use rand_core v0.4.0 instead of v0.3.1.
extern_rlib = [ "rand_core" ]
## Override: use rand_core v0.4.0 instead of v0.3.1.
# extern = [
# {
# label = ":rand_core-0.3.1"
# crate_name = "rand_core"
# crate_type = "rlib"
# crate_version = "0.3.1"
# },
# ]
}
rust_rlib("rand_jitter") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_jitter-0.1.4/src/lib.rs"
features = [
"rand_core",
"std",
]
extern_rlib = [ "rand_core" ]
args = [
"--cap-lints",
"allow",
]
if (is_mac) {
extern_rlib += [ "libc" ]
}
if (is_win) {
extern_rlib += [ "winapi" ]
}
}
rust_rlib("rand_os") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3/src/lib.rs"
extern_rlib = [ "rand_core" ]
args = [
"--cap-lints",
"allow",
]
if (is_posix) {
extern_rlib += [ "libc" ]
}
# Per the #[link(...)] attribute found in 'src/macos.rs'.
if (is_mac) {
libs = [ "Security.framework" ]
}
if (is_win) {
extern_rlib += [ "winapi" ]
}
}
rust_rlib("rand_pcg") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/src/lib.rs"
extern_rlib = [ "rand_core" ]
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
cfg = [ "rustc_1_26" ]
}
rust_rlib("rand_xorshift") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_xorshift-0.1.1/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
# Override: use rand_core v0.4.0 instead of v0.3.1.
extern_rlib = [ "rand_core" ]
## Override: use rand_core v0.4.0 instead of v0.3.1.
# extern = [
# {
# label = ":rand_core-0.3.1"
# crate_name = "rand_core"
# crate_type = "rlib"
# crate_version = "0.3.1"
# },
# ]
}
rust_rlib("regex") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/regex-1.1.6/src/lib.rs"
features = [
"default",
"use_std",
]
extern_rlib = [
"aho_corasick",
"memchr",
"regex_syntax",
"thread_local",
"utf8_ranges",
]
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
cfg = [
"regex_runtime_teddy_avx2",
"regex_runtime_teddy_ssse3",
]
}
rust_rlib("regex_syntax") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.6/src/lib.rs"
extern_rlib = [ "ucd_util" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("remove_dir_all") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.1/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
if (is_win) {
extern_rlib = [ "winapi" ]
}
}
rust_rlib("ring") {
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/src/lib.rs"
features = [
"default",
"dev_urandom_fallback",
"use_heap",
]
deps = [
":ring-core",
## Override: don't build 'ring-test' static library.
# ":ring-test",
]
extern_rlib = [
"libc",
"spin",
"untrusted",
]
args = [
"--cap-lints",
"allow",
]
if (is_linux) {
extern_rlib += [ "lazy_static" ]
}
# Per the #[link(...)] attribute found in 'src/rand.rs'.
if (is_mac) {
libs = [ "Security.framework" ]
}
if (is_win) {
extern_rlib += [ "winapi" ]
}
}
static_library("ring-core") {
include_dirs = [
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/include",
]
sources = [
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/block.c",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/cpu-intel.c",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/crypto.c",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/fipsmodule/bn/generic.c",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/fipsmodule/bn/montgomery.c",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/fipsmodule/bn/montgomery_inv.c",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/fipsmodule/ec/ecp_nistz.c",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/fipsmodule/ec/ecp_nistz256.c",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/fipsmodule/ec/gfp_p256.c",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/fipsmodule/ec/gfp_p384.c",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/fipsmodule/modes/gcm.c",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/limbs/limbs.c",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/mem.c",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/third_party/fiat/curve25519.c",
]
if (is_linux) {
sources += [
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/aes-x86_64-elf.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/aesni-gcm-x86_64-elf.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/aesni-x86_64-elf.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/chacha-x86_64-elf.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/ghash-x86_64-elf.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/p256-x86_64-asm-elf.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/poly1305-x86_64-elf.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/sha256-x86_64-elf.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/sha512-x86_64-elf.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/vpaes-x86_64-elf.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/x86_64-mont-elf.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/x86_64-mont5-elf.S",
]
# Supress "warning: '_GNU_SOURCE' macro redefined."
cflags = [ "-Wno-macro-redefined" ]
}
if (is_mac) {
sources += [
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/aes-x86_64-macosx.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/aesni-gcm-x86_64-macosx.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/aesni-x86_64-macosx.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/chacha-x86_64-macosx.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/ghash-x86_64-macosx.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/p256-x86_64-asm-macosx.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/poly1305-x86_64-macosx.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/sha256-x86_64-macosx.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/sha512-x86_64-macosx.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/vpaes-x86_64-macosx.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/x86_64-mont-macosx.S",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/x86_64-mont5-macosx.S",
]
}
if (is_win) {
libs = [
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/aes-x86_64-nasm.obj",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/aesni-gcm-x86_64-nasm.obj",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/aesni-x86_64-nasm.obj",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/chacha-x86_64-nasm.obj",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/ghash-x86_64-nasm.obj",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/p256-x86_64-asm-nasm.obj",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/poly1305-x86_64-nasm.obj",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/sha256-x86_64-nasm.obj",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/sha512-x86_64-nasm.obj",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/vpaes-x86_64-nasm.obj",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/x86_64-mont-nasm.obj",
"$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/pregenerated/x86_64-mont5-nasm.obj",
]
# Suppress "warning: '_addcarry_u64' is not a recognized builtin."
cflags = [ "-Wno-ignored-pragma-intrinsic" ]
}
}
## Override: don't build 'ring-test' static library.
# static_library("ring-test") {
# include_dirs = [ "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/include" ]
# sources = [ "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.14.6/crypto/constant_time_test.c" ]
# }
rust_rlib("rustls") {
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rustls-0.15.2/src/lib.rs"
features = [
"default",
"log",
"logging",
]
extern_rlib = [
"base64",
"log",
"ring",
"sct",
"untrusted",
"webpki",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("rustyline") {
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rustyline-4.0.0/src/lib.rs"
features = [
"default",
"dirs",
"with-dirs",
]
extern_rlib = [
"dirs",
"libc",
"log",
"memchr",
"unicode_segmentation",
"unicode_width",
]
args = [
"--cap-lints",
"allow",
]
if (is_posix) {
extern_rlib += [
"nix",
"utf8parse",
]
}
if (is_win) {
extern_rlib += [ "winapi" ]
}
}
rust_rlib("ryu") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ryu-0.2.8/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
cfg = [
"integer128",
"must_use_return",
]
}
rust_rlib("scopeguard") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/scopeguard-0.3.3/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("sct") {
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/sct-0.5.0/src/lib.rs"
extern_rlib = [
"ring",
"untrusted",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("serde") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/serde-1.0.91/src/lib.rs"
features = [
"default",
"std",
]
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
cfg = [
"core_duration",
"core_reverse",
"de_boxed_c_str",
"de_rc_dst",
"integer128",
"num_nonzero",
"ops_bound",
"range_inclusive",
]
}
rust_rlib("serde_json") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.39/src/lib.rs"
features = [ "default" ]
extern_rlib = [
"itoa",
"ryu",
"serde",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("slab") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/slab-0.4.2/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("smallvec") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/smallvec-0.6.9/lib.rs"
features = [
"default",
"std",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("source_map_mappings") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/source-map-mappings-0.5.0/src/lib.rs"
extern_rlib = [
"vlq",
# Override: use rand v0.6.5 instead of v0.4.6.
"rand",
]
args = [
"--cap-lints",
"allow",
]
## Override: use rand v0.6.5 instead of v0.4.6.
# extern = [
# {
# label = ":rand-0.4.6"
# crate_name = "rand"
# crate_type = "rlib"
# crate_version = "0.4.6"
# },
# ]
}
rust_rlib("spin") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/spin-0.5.0/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
## Override: avoid dependency on on 'owning_ref'.
# rust_rlib("stable_deref_trait") {
# edition = "2015"
# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/stable_deref_trait-1.1.1/src/lib.rs"
# features = [
# "default",
# "std",
# ]
# args = [
# "--cap-lints",
# "allow",
# ]
# }
rust_rlib("string") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/string-0.1.3/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("strsim") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/strsim-0.8.0/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tempfile") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tempfile-3.0.7/src/lib.rs"
extern_rlib = [
"cfg_if",
"rand",
"remove_dir_all",
]
args = [
"--cap-lints",
"allow",
]
if (is_posix) {
extern_rlib += [ "libc" ]
}
if (is_win) {
extern_rlib += [ "winapi" ]
}
}
rust_rlib("textwrap") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/textwrap-0.11.0/src/lib.rs"
extern_rlib = [ "unicode_width" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("thread_local") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/thread_local-0.3.6/src/lib.rs"
extern_rlib = [ "lazy_static" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("time") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/time-0.1.42/src/lib.rs"
extern_rlib = [ "libc" ]
args = [
"--cap-lints",
"allow",
]
if (is_win) {
extern_rlib += [ "winapi" ]
}
}
rust_rlib("tokio") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-0.1.19/src/lib.rs"
features = [
"bytes",
"codec",
"default",
"fs",
"io",
"mio",
"num_cpus",
"reactor",
"rt-full",
"sync",
"tcp",
"timer",
"tokio-codec",
"tokio-current-thread",
"tokio-executor",
"tokio-fs",
"tokio-io",
"tokio-reactor",
"tokio-sync",
"tokio-tcp",
"tokio-threadpool",
"tokio-timer",
"tokio-trace-core",
"tokio-udp",
"tokio-uds",
"udp",
"uds",
]
extern_rlib = [
"bytes",
"futures",
"mio",
"num_cpus",
"tokio_codec",
"tokio_current_thread",
"tokio_executor",
"tokio_fs",
"tokio_io",
"tokio_reactor",
"tokio_sync",
"tokio_tcp",
"tokio_threadpool",
"tokio_timer",
"tokio_trace_core",
"tokio_udp",
]
args = [
"--cap-lints",
"allow",
]
if (is_posix) {
extern_rlib += [ "tokio_uds" ]
}
}
rust_rlib("tokio_codec") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-codec-0.1.1/src/lib.rs"
extern_rlib = [
"bytes",
"futures",
"tokio_io",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_current_thread") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-current-thread-0.1.6/src/lib.rs"
extern_rlib = [
"futures",
"tokio_executor",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_executor") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-executor-0.1.7/src/lib.rs"
extern_rlib = [
"crossbeam_utils",
"futures",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_fs") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-fs-0.1.6/src/lib.rs"
extern_rlib = [
"futures",
"tokio_io",
"tokio_threadpool",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_io") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-io-0.1.12/src/lib.rs"
extern_rlib = [
"bytes",
"futures",
"log",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_process") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-process-0.2.3/src/lib.rs"
extern_rlib = [
"futures",
"mio",
"tokio_io",
"tokio_reactor",
]
args = [
"--cap-lints",
"allow",
]
if (is_posix) {
extern_rlib += [
"libc",
"tokio_signal",
]
}
if (is_win) {
extern_rlib += [
"mio_named_pipes",
"winapi",
]
}
}
rust_rlib("tokio_reactor") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-reactor-0.1.9/src/lib.rs"
extern_rlib = [
"crossbeam_utils",
"futures",
"lazy_static",
"log",
"mio",
"num_cpus",
"parking_lot",
"slab",
"tokio_executor",
"tokio_io",
"tokio_sync",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_rustls") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-rustls-0.9.2/src/lib.rs"
features = [
"default",
"futures",
"tokio-io",
"tokio-support",
]
extern_rlib = [
"futures",
"rustls",
"tokio_io",
"webpki",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_sync") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-sync-0.1.5/src/lib.rs"
extern_rlib = [
"fnv",
"futures",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_tcp") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-tcp-0.1.3/src/lib.rs"
extern_rlib = [
"bytes",
"futures",
"iovec",
"mio",
"tokio_io",
"tokio_reactor",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_threadpool") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-threadpool-0.1.14/src/lib.rs"
extern_rlib = [
"crossbeam_deque",
"crossbeam_queue",
"crossbeam_utils",
"futures",
"log",
"num_cpus",
"rand",
"slab",
"tokio_executor",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_timer") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-timer-0.2.10/src/lib.rs"
extern_rlib = [
"crossbeam_utils",
"futures",
"slab",
"tokio_executor",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_trace_core") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-trace-core-0.1.0/src/lib.rs"
extern_rlib = [ "lazy_static" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_udp") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-udp-0.1.3/src/lib.rs"
extern_rlib = [
"bytes",
"futures",
"log",
"mio",
"tokio_codec",
"tokio_io",
"tokio_reactor",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("try_lock") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/try-lock-0.2.2/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("ucd_util") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ucd-util-0.1.3/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("unicode_bidi") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.4/src/lib.rs"
features = [ "default" ]
extern_rlib = [ "matches" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("unicode_normalization") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.8/src/lib.rs"
extern_rlib = [ "smallvec" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("unicode_segmentation") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.2.1/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("unicode_width") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.5/src/lib.rs"
features = [ "default" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("untrusted") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/untrusted-0.6.2/src/untrusted.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("url") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/url-1.7.2/src/lib.rs"
extern_rlib = [
"idna",
"matches",
"percent_encoding",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("utf8_ranges") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/utf8-ranges-1.0.2/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("utime") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/utime-0.2.1/src/lib.rs"
extern_rlib = [ "libc" ]
args = [
"--cap-lints",
"allow",
]
if (is_win) {
extern_rlib += [ "kernel32" ]
extern = [
{
label = ":winapi-0.2.8"
crate_name = "winapi"
crate_type = "rlib"
crate_version = "0.2.8"
},
]
}
# if (is_posix) {
# # Override: 'kernel32' should be a windows-only dependency.
# extern_rlib += [ "kernel32" ]
#
# # Override: 'winapi' should be a windows-only dependency.
# extern = [
# {
# label = ":winapi-0.2.8"
# crate_name = "winapi"
# crate_type = "rlib"
# crate_version = "0.2.8"
# },
# ]
# }
}
rust_rlib("vec_map") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.1/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("vlq") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/vlq-0.5.1/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("want") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/want-0.0.6/src/lib.rs"
extern_rlib = [
"futures",
"log",
"try_lock",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("webpki") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/webpki-0.19.1/src/webpki.rs"
features = [
"default",
"std",
"trust_anchor_util",
]
extern_rlib = [
"ring",
"untrusted",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("webpki_roots") {
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/webpki-roots-0.16.0/src/lib.rs"
extern_rlib = [
"untrusted",
"webpki",
]
args = [
"--cap-lints",
"allow",
]
}
## Override: use rand v0.6.5 instead.
# rust_rlib("rand-0.4.6") {
# crate_name = "rand"
# crate_version = "0.4.6"
# edition = "2015"
# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand-0.4.6/src/lib.rs"
# features = [
# "default",
# "libc",
# "std",
# ]
# args = [
# "--cap-lints",
# "allow",
# ]
# if (is_posix) {
# extern_rlib = [ "libc" ]
# }
#
# # Per the #[link(...)] attribute found in 'src/os.rs'.
# if (is_mac) {
# libs = [ "Security.framework" ]
# }
# if (is_win) {
# extern_rlib = [ "winapi" ]
# }
# }
## Override: use rand_core v0.4.0 instead.
# rust_rlib("rand_core-0.3.1") {
# crate_name = "rand_core"
# crate_version = "0.3.1"
# edition = "2015"
# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_core-0.3.1/src/lib.rs"
# extern_rlib = [ "rand_core" ]
# args = [
# "--cap-lints",
# "allow",
# ]
# }
if (is_posix) {
rust_rlib("arc_swap") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/arc-swap-0.3.11/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("mio_uds") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.7/src/lib.rs"
extern_rlib = [
"iovec",
"libc",
"mio",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("nix") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/nix-0.13.0/src/lib.rs"
extern_rlib = [
"bitflags",
"cfg_if",
"libc",
"void",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("signal_hook") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/signal-hook-0.1.9/src/lib.rs"
extern_rlib = [
"libc",
"signal_hook_registry",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("signal_hook_registry") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/signal-hook-registry-1.0.1/src/lib.rs"
extern_rlib = [
"arc_swap",
"libc",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_signal") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/lib.rs"
extern_rlib = [
"futures",
"libc",
"mio",
"mio_uds",
"signal_hook",
"tokio_executor",
"tokio_io",
"tokio_reactor",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("tokio_uds") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-uds-0.2.5/src/lib.rs"
extern_rlib = [
"bytes",
"futures",
"iovec",
"libc",
"log",
"mio",
"mio_uds",
"tokio_codec",
"tokio_io",
"tokio_reactor",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("utf8parse") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.1.1/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("void") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/void-1.0.2/src/lib.rs"
features = [
"default",
"std",
]
args = [
"--cap-lints",
"allow",
]
}
}
if (is_win) {
rust_rlib("kernel32") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/kernel32-sys-0.2.2/src/lib.rs"
extern = [
{
label = ":winapi-0.2.8"
crate_name = "winapi"
crate_type = "rlib"
crate_version = "0.2.8"
},
]
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
libs = [ "kernel32.lib" ]
}
rust_rlib("mio_named_pipes") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/mio-named-pipes-0.1.6/src/lib.rs"
extern_rlib = [
"log",
"mio",
"miow",
"winapi",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("miow") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/miow-0.3.3/src/lib.rs"
extern_rlib = [
"socket2",
"winapi",
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("socket2") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/socket2-0.3.9/src/lib.rs"
extern_rlib = [ "winapi" ]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("winapi") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.7/src/lib.rs"
features = [
"consoleapi",
"dbghelp",
"errhandlingapi",
"fileapi",
"handleapi",
"ioapiset",
"knownfolders",
"minwinbase",
"minwindef",
"namedpipeapi",
"ntdef",
"ntsecapi",
"ntstatus",
"objbase",
"processenv",
"processthreadsapi",
"profileapi",
"shlobj",
"std",
"synchapi",
"sysinfoapi",
"threadpoollegacyapiset",
"timezoneapi",
"winbase",
"wincon",
"winerror",
"winnt",
"winsock2",
"winuser",
"ws2def",
"ws2ipdef",
"ws2tcpip",
"wtypesbase",
# Added by custom-build script.
"basetsd",
"cfg",
"cfgmgr32",
"combaseapi",
"devpropdef",
"excpt",
"guiddef",
"in6addr",
"inaddr",
"ktmtypes",
"libloaderapi",
"limits",
"lsalookup",
"mstcpip",
"objidl",
"objidlbase",
"propidl",
"qos",
"rpc",
"rpcdce",
"rpcndr",
"shtypes",
"sspi",
"subauth",
"unknwnbase",
"vadefs",
"vcruntime",
"wincontypes",
"wincred",
"windef",
"wingdi",
"winreg",
"wtypes",
]
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
libs = [
"advapi32.lib",
"cfgmgr32.lib",
"credui.lib",
"dbghelp.lib",
"fwpuclnt.lib",
"gdi32.lib",
"kernel32.lib",
"msimg32.lib",
"ntdll.lib",
"ole32.lib",
"opengl32.lib",
"secur32.lib",
"shell32.lib",
"synchronization.lib",
"user32.lib",
"winspool.lib",
"ws2_32.lib",
]
}
rust_rlib("ws2_32") {
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ws2_32-sys-0.2.1/src/lib.rs"
extern = [
{
label = ":winapi-0.2.8"
crate_name = "winapi"
crate_type = "rlib"
crate_version = "0.2.8"
},
]
args = [
"--cap-lints",
"allow",
]
# Added by custom-build script.
libs = [ "ws2_32.lib" ]
}
rust_rlib("miow-0.2.1") {
crate_name = "miow"
crate_version = "0.2.1"
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/miow-0.2.1/src/lib.rs"
extern_rlib = [
"kernel32",
"net2",
"ws2_32",
]
extern = [
{
label = ":winapi-0.2.8"
crate_name = "winapi"
crate_type = "rlib"
crate_version = "0.2.8"
},
]
args = [
"--cap-lints",
"allow",
]
}
rust_rlib("winapi-0.2.8") {
crate_name = "winapi"
crate_version = "0.2.8"
edition = "2015"
source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/winapi-0.2.8/src/lib.rs"
args = [
"--cap-lints",
"allow",
]
}
}