update Rust deps

This commit is contained in:
Damien Elmes 2021-03-07 19:04:34 +10:00
parent 455d609109
commit 0207f6c0ab
144 changed files with 1272 additions and 1486 deletions

386
Cargo.lock generated
View file

@ -11,9 +11,9 @@ dependencies = [
[[package]] [[package]]
name = "adler" name = "adler"
version = "0.2.3" version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee2a4ec343196209d6594e19543ae87a39f96d5534d7174822a3ad825dd6ed7e" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]] [[package]]
name = "ahash" name = "ahash"
@ -32,9 +32,9 @@ dependencies = [
[[package]] [[package]]
name = "ammonia" name = "ammonia"
version = "3.1.0" version = "3.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89eac85170f4b3fb3dc5e442c1cfb036cb8eecf9dbbd431a161ffad15d90ea3b" checksum = "1ee7d6eb157f337c5cedc95ddf17f0cbc36d36eb7763c8e0d1c1aeb3722f6279"
dependencies = [ dependencies = [
"html5ever", "html5ever",
"lazy_static", "lazy_static",
@ -74,7 +74,7 @@ dependencies = [
"num-integer", "num-integer",
"num_enum", "num_enum",
"once_cell", "once_cell",
"pin-project 1.0.5", "pin-project",
"proc-macro-nested", "proc-macro-nested",
"prost", "prost",
"prost-build", "prost-build",
@ -197,14 +197,14 @@ dependencies = [
"flate2", "flate2",
"futures-core", "futures-core",
"memchr", "memchr",
"pin-project-lite 0.2.4", "pin-project-lite 0.2.6",
] ]
[[package]] [[package]]
name = "async-trait" name = "async-trait"
version = "0.1.42" version = "0.1.47"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d3a45e77e34375a7923b1e8febb049bb011f064714a8e17a1a616fef01da13d" checksum = "7e098e9c493fdf92832223594d9a164f96bdf17ba81a42aff86f85c76768726a"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -262,9 +262,9 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
[[package]] [[package]]
name = "bitvec" name = "bitvec"
version = "0.19.4" version = "0.19.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7ba35e9565969edb811639dbebfe34edc0368e472c5018474c8eb2543397f81" checksum = "8942c8d352ae1838c9dda0b0ca2ab657696ef2232a20147cf1b30ae1a9cb4321"
dependencies = [ dependencies = [
"funty", "funty",
"radium", "radium",
@ -272,17 +272,6 @@ dependencies = [
"wyz", "wyz",
] ]
[[package]]
name = "blake2b_simd"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
dependencies = [
"arrayref",
"arrayvec 0.5.2",
"constant_time_eq",
]
[[package]] [[package]]
name = "blake3" name = "blake3"
version = "0.3.7" version = "0.3.7"
@ -300,9 +289,9 @@ dependencies = [
[[package]] [[package]]
name = "bumpalo" name = "bumpalo"
version = "3.6.0" version = "3.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "099e596ef14349721d9016f6b80dd3419ea1bf289ab9b44df8e4dfd3a005d5d9" checksum = "63396b8a4b9de3f4fdfb320ab6080762242f66a8ef174c49d8e19b674db4cdbe"
[[package]] [[package]]
name = "byteorder" name = "byteorder"
@ -334,9 +323,9 @@ checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
[[package]] [[package]]
name = "cc" name = "cc"
version = "1.0.66" version = "1.0.67"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48" checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd"
[[package]] [[package]]
name = "cfg-if" name = "cfg-if"
@ -418,9 +407,9 @@ dependencies = [
[[package]] [[package]]
name = "crossbeam-utils" name = "crossbeam-utils"
version = "0.8.1" version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d" checksum = "e7e9d99fa91428effe99c5c6d4634cdeba32b8cf784fc428a2a687f61a952c49"
dependencies = [ dependencies = [
"autocfg", "autocfg",
"cfg-if 1.0.0", "cfg-if 1.0.0",
@ -468,20 +457,20 @@ dependencies = [
] ]
[[package]] [[package]]
name = "dirs" name = "dirs-next"
version = "2.0.2" version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3" checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [ dependencies = [
"cfg-if 0.1.10", "cfg-if 1.0.0",
"dirs-sys", "dirs-sys-next",
] ]
[[package]] [[package]]
name = "dirs-sys" name = "dirs-sys-next"
version = "0.3.5" version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e93d7f5705de3e49895a2b5e0b8855a1c27f080192ae9c32a6432d50741a57a" checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
dependencies = [ dependencies = [
"libc", "libc",
"redox_users", "redox_users",
@ -511,9 +500,9 @@ dependencies = [
[[package]] [[package]]
name = "env_logger" name = "env_logger"
version = "0.8.2" version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26ecb66b4bdca6c1409b40fb255eefc2bd4f6d135dab3c3124f80ffa2a9661e" checksum = "17392a012ea30ef05a610aa97dfb49496e71c9f676b27879922ea5bdf60d9d3f"
dependencies = [ dependencies = [
"atty", "atty",
"humantime", "humantime",
@ -637,9 +626,9 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]] [[package]]
name = "form_urlencoded" name = "form_urlencoded"
version = "1.0.0" version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ece68d15c92e84fa4f19d3780f1294e5ca82a78a6d515f1efaabcc144688be00" checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [ dependencies = [
"matches", "matches",
"percent-encoding", "percent-encoding",
@ -679,9 +668,9 @@ dependencies = [
[[package]] [[package]]
name = "futures" name = "futures"
version = "0.3.12" version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da9052a1a50244d8d5aa9bf55cbc2fb6f357c86cc52e46c62ed390a7180cf150" checksum = "7f55667319111d593ba876406af7c409c0ebb44dc4be6132a783ccf163ea14c1"
dependencies = [ dependencies = [
"futures-channel", "futures-channel",
"futures-core", "futures-core",
@ -694,9 +683,9 @@ dependencies = [
[[package]] [[package]]
name = "futures-channel" name = "futures-channel"
version = "0.3.12" version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2d31b7ec7efab6eefc7c57233bb10b847986139d88cc2f5a02a1ae6871a1846" checksum = "8c2dd2df839b57db9ab69c2c9d8f3e8c81984781937fe2807dc6dcf3b2ad2939"
dependencies = [ dependencies = [
"futures-core", "futures-core",
"futures-sink", "futures-sink",
@ -704,15 +693,15 @@ dependencies = [
[[package]] [[package]]
name = "futures-core" name = "futures-core"
version = "0.3.12" version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79e5145dde8da7d1b3892dad07a9c98fc04bc39892b1ecc9692cf53e2b780a65" checksum = "15496a72fabf0e62bdc3df11a59a3787429221dd0710ba8ef163d6f7a9112c94"
[[package]] [[package]]
name = "futures-executor" name = "futures-executor"
version = "0.3.12" version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9e59fdc009a4b3096bf94f740a0f2424c082521f20a9b08c5c07c48d90fd9b9" checksum = "891a4b7b96d84d5940084b2a37632dd65deeae662c114ceaa2c879629c9c0ad1"
dependencies = [ dependencies = [
"futures-core", "futures-core",
"futures-task", "futures-task",
@ -721,15 +710,15 @@ dependencies = [
[[package]] [[package]]
name = "futures-io" name = "futures-io"
version = "0.3.12" version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28be053525281ad8259d47e4de5de657b25e7bac113458555bb4b70bc6870500" checksum = "d71c2c65c57704c32f5241c1223167c2c3294fd34ac020c807ddbe6db287ba59"
[[package]] [[package]]
name = "futures-macro" name = "futures-macro"
version = "0.3.12" version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c287d25add322d9f9abdcdc5927ca398917996600182178774032e9f8258fedd" checksum = "ea405816a5139fb39af82c2beb921d52143f556038378d6db21183a5c37fbfb7"
dependencies = [ dependencies = [
"proc-macro-hack", "proc-macro-hack",
"proc-macro2", "proc-macro2",
@ -739,24 +728,21 @@ dependencies = [
[[package]] [[package]]
name = "futures-sink" name = "futures-sink"
version = "0.3.12" version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "caf5c69029bda2e743fddd0582d1083951d65cc9539aebf8812f36c3491342d6" checksum = "85754d98985841b7d4f5e8e6fbfa4a4ac847916893ec511a2917ccd8525b8bb3"
[[package]] [[package]]
name = "futures-task" name = "futures-task"
version = "0.3.12" version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13de07eb8ea81ae445aca7b69f5f7bf15d7bf4912d8ca37d6645c77ae8a58d86" checksum = "fa189ef211c15ee602667a6fcfe1c1fd9e07d42250d2156382820fba33c9df80"
dependencies = [
"once_cell",
]
[[package]] [[package]]
name = "futures-util" name = "futures-util"
version = "0.3.12" version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "632a8cd0f2a4b3fdea1657f08bde063848c3bd00f9bbf6e256b8be78802e624b" checksum = "1812c7ab8aedf8d6f2701a43e1243acdbcc2b36ab26e2ad421eb99ac963d96d1"
dependencies = [ dependencies = [
"futures-channel", "futures-channel",
"futures-core", "futures-core",
@ -765,7 +751,7 @@ dependencies = [
"futures-sink", "futures-sink",
"futures-task", "futures-task",
"memchr", "memchr",
"pin-project-lite 0.2.4", "pin-project-lite 0.2.6",
"pin-utils", "pin-utils",
"proc-macro-hack", "proc-macro-hack",
"proc-macro-nested", "proc-macro-nested",
@ -888,9 +874,9 @@ dependencies = [
[[package]] [[package]]
name = "hex" name = "hex"
version = "0.4.2" version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]] [[package]]
name = "html5ever" name = "html5ever"
@ -973,7 +959,7 @@ dependencies = [
"httparse", "httparse",
"httpdate", "httpdate",
"itoa", "itoa",
"pin-project 1.0.5", "pin-project",
"socket2", "socket2",
"tokio", "tokio",
"tower-service", "tower-service",
@ -1023,9 +1009,9 @@ dependencies = [
[[package]] [[package]]
name = "idna" name = "idna"
version = "0.2.1" version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de910d521f7cc3135c4de8db1cb910e0b5ed1dc6f57c381cd07e8e661ce10094" checksum = "89829a5d69c23d348314a7ac337fe39173b61149a9864deabd260983aed48c21"
dependencies = [ dependencies = [
"matches", "matches",
"unicode-bidi", "unicode-bidi",
@ -1034,9 +1020,9 @@ dependencies = [
[[package]] [[package]]
name = "indexmap" name = "indexmap"
version = "1.6.1" version = "1.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb1fa934250de4de8aef298d81c729a7d33d8c239daa3a7575e6b92bfc7313b" checksum = "824845a0bf897a9042383849b02c1bc219c2383772efcd5c6f9766fa4b81aef3"
dependencies = [ dependencies = [
"autocfg", "autocfg",
"hashbrown", "hashbrown",
@ -1044,10 +1030,24 @@ dependencies = [
[[package]] [[package]]
name = "indoc" name = "indoc"
version = "1.0.3" version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5a75aeaaef0ce18b58056d306c27b07436fbb34b8816c53094b76dd81803136" checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8"
dependencies = [ dependencies = [
"indoc-impl",
"proc-macro-hack",
]
[[package]]
name = "indoc-impl"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0"
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
"unindent", "unindent",
] ]
@ -1134,9 +1134,9 @@ checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
[[package]] [[package]]
name = "js-sys" name = "js-sys"
version = "0.3.47" version = "0.3.48"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cfb73131c35423a367daf8cbd24100af0d077668c8c2943f0e7dd775fef0f65" checksum = "dc9f84f9b115ce7843d60706df1422a916680bfdfcbdb0447c5614ff9d7e4d78"
dependencies = [ dependencies = [
"wasm-bindgen", "wasm-bindgen",
] ]
@ -1159,22 +1159,22 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]] [[package]]
name = "lexical-core" name = "lexical-core"
version = "0.7.4" version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db65c6da02e61f55dae90a0ae427b2a5f6b3e8db09f58d10efab23af92592616" checksum = "21f866863575d0e1d654fbeeabdc927292fdf862873dc3c96c6f753357e13374"
dependencies = [ dependencies = [
"arrayvec 0.5.2", "arrayvec 0.5.2",
"bitflags", "bitflags",
"cfg-if 0.1.10", "cfg-if 1.0.0",
"ryu", "ryu",
"static_assertions", "static_assertions",
] ]
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.85" version = "0.2.88"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ccac4b00700875e6a07c6cde370d44d32fa01c5a65cdd2fca6858c479d28bb3" checksum = "03b07a082330a35e43f63177cc01689da34fbffa0105e1246cf0311472cac73a"
[[package]] [[package]]
name = "libsqlite3-sys" name = "libsqlite3-sys"
@ -1276,9 +1276,9 @@ dependencies = [
[[package]] [[package]]
name = "miniz_oxide" name = "miniz_oxide"
version = "0.4.3" version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f2d26ec3309788e423cfbf68ad1800f061638098d76a83681af979dc4eda19d" checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
dependencies = [ dependencies = [
"adler", "adler",
"autocfg", "autocfg",
@ -1364,11 +1364,12 @@ checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
[[package]] [[package]]
name = "nom" name = "nom"
version = "6.1.0" version = "6.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab6f70b46d6325aa300f1c7bb3d470127dfc27806d8ea6bf294ee0ce643ce2b1" checksum = "e7413f999671bd4745a7b624bd370a569fb6bc574b23c83a3c5ed2e453f3d5e2"
dependencies = [ dependencies = [
"bitvec", "bitvec",
"funty",
"lexical-core", "lexical-core",
"memchr", "memchr",
"version_check", "version_check",
@ -1443,9 +1444,9 @@ checksum = "a9a7ab5d64814df0fe4a4b5ead45ed6c5f181ee3ff04ba344313a6c80446c5d4"
[[package]] [[package]]
name = "once_cell" name = "once_cell"
version = "1.5.2" version = "1.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0" checksum = "af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3"
[[package]] [[package]]
name = "openssl" name = "openssl"
@ -1493,23 +1494,36 @@ dependencies = [
[[package]] [[package]]
name = "parking_lot_core" name = "parking_lot_core"
version = "0.8.2" version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ccb628cad4f84851442432c60ad8e1f607e29752d0bf072cbd0baf28aa34272" checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"instant", "instant",
"libc", "libc",
"redox_syscall 0.1.57", "redox_syscall",
"smallvec", "smallvec",
"winapi 0.3.9", "winapi 0.3.9",
] ]
[[package]] [[package]]
name = "paste" name = "paste"
version = "1.0.4" version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5d65c4d95931acda4498f675e332fcbdc9a06705cd07086c510e9b6009cd1c1" checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880"
dependencies = [
"paste-impl",
"proc-macro-hack",
]
[[package]]
name = "paste-impl"
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6"
dependencies = [
"proc-macro-hack",
]
[[package]] [[package]]
name = "percent-encoding" name = "percent-encoding"
@ -1565,33 +1579,13 @@ dependencies = [
"siphasher", "siphasher",
] ]
[[package]]
name = "pin-project"
version = "0.4.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ffbc8e94b38ea3d2d8ba92aea2983b503cd75d0888d75b86bb37970b5698e15"
dependencies = [
"pin-project-internal 0.4.27",
]
[[package]] [[package]]
name = "pin-project" name = "pin-project"
version = "1.0.5" version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96fa8ebb90271c4477f144354485b8068bd8f6b78b428b01ba892ca26caf0b63" checksum = "96fa8ebb90271c4477f144354485b8068bd8f6b78b428b01ba892ca26caf0b63"
dependencies = [ dependencies = [
"pin-project-internal 1.0.5", "pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "0.4.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "65ad2ae56b6abe3a1ee25f15ee605bacadb9a764edaba9c2bf4103800d4a1895"
dependencies = [
"proc-macro2",
"quote",
"syn",
] ]
[[package]] [[package]]
@ -1607,15 +1601,15 @@ dependencies = [
[[package]] [[package]]
name = "pin-project-lite" name = "pin-project-lite"
version = "0.1.11" version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c917123afa01924fc84bb20c4c03f004d9c38e5127e3c039bbf7f4b9c76a2f6b" checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777"
[[package]] [[package]]
name = "pin-project-lite" name = "pin-project-lite"
version = "0.2.4" version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439697af366c49a6d0a010c56a0d97685bc140ce0d377b13a2ea2aa42d64a827" checksum = "dc0e1f259c92177c30a4c9d177246edd0a3568b25756a977d0632cf8fa37e905"
[[package]] [[package]]
name = "pin-utils" name = "pin-utils"
@ -1742,9 +1736,9 @@ dependencies = [
[[package]] [[package]]
name = "pyo3" name = "pyo3"
version = "0.13.1" version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00ca634cf3acd58a599b535ed6cb188223298977d471d146121792bfa23b754c" checksum = "4837b8e8e18a102c23f79d1e9a110b597ea3b684c95e874eb1ad88f8683109c3"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"ctor", "ctor",
@ -1759,9 +1753,9 @@ dependencies = [
[[package]] [[package]]
name = "pyo3-macros" name = "pyo3-macros"
version = "0.13.1" version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "483ac516dbda6789a5b4be0271e7a31b9ad4ec8c0a5955050e8076f72bdbef8f" checksum = "a47f2c300ceec3e58064fd5f8f5b61230f2ffd64bde4970c81fdd0563a2db1bb"
dependencies = [ dependencies = [
"pyo3-macros-backend", "pyo3-macros-backend",
"quote", "quote",
@ -1770,9 +1764,9 @@ dependencies = [
[[package]] [[package]]
name = "pyo3-macros-backend" name = "pyo3-macros-backend"
version = "0.13.1" version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15230cabcda008f03565ed8bac40f094cbb5ee1b46e6551f1ec3a0e922cf7df9" checksum = "87b097e5d84fcbe3e167f400fbedd657820a375b034c78bd852050749a575d66"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -1781,9 +1775,9 @@ dependencies = [
[[package]] [[package]]
name = "quote" name = "quote"
version = "1.0.8" version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "991431c3519a3f36861882da93630ce66b52918dcf1b8e2fd66b397fc96f28df" checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
] ]
@ -1816,7 +1810,7 @@ checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e"
dependencies = [ dependencies = [
"libc", "libc",
"rand_chacha 0.3.0", "rand_chacha 0.3.0",
"rand_core 0.6.1", "rand_core 0.6.2",
"rand_hc 0.3.0", "rand_hc 0.3.0",
] ]
@ -1837,7 +1831,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d" checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d"
dependencies = [ dependencies = [
"ppv-lite86", "ppv-lite86",
"rand_core 0.6.1", "rand_core 0.6.2",
] ]
[[package]] [[package]]
@ -1851,9 +1845,9 @@ dependencies = [
[[package]] [[package]]
name = "rand_core" name = "rand_core"
version = "0.6.1" version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c026d7df8b298d90ccbbc5190bd04d85e159eaf5576caeacf8741da93ccbd2e5" checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7"
dependencies = [ dependencies = [
"getrandom 0.2.2", "getrandom 0.2.2",
] ]
@ -1873,7 +1867,7 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73" checksum = "3190ef7066a446f2e7f42e239d161e905420ccab01eb967c9eb27d21b2322a73"
dependencies = [ dependencies = [
"rand_core 0.6.1", "rand_core 0.6.2",
] ]
[[package]] [[package]]
@ -1887,28 +1881,21 @@ dependencies = [
[[package]] [[package]]
name = "redox_syscall" name = "redox_syscall"
version = "0.1.57" version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" checksum = "94341e4e44e24f6b591b59e47a8a027df12e008d73fd5672dbea9cc22f4507d9"
[[package]]
name = "redox_syscall"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05ec8ca9416c5ea37062b502703cd7fcb207736bc294f6e0cf367ac6fc234570"
dependencies = [ dependencies = [
"bitflags", "bitflags",
] ]
[[package]] [[package]]
name = "redox_users" name = "redox_users"
version = "0.3.5" version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d" checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
dependencies = [ dependencies = [
"getrandom 0.1.16", "getrandom 0.2.2",
"redox_syscall 0.1.57", "redox_syscall",
"rust-argon2",
] ]
[[package]] [[package]]
@ -1983,7 +1970,7 @@ dependencies = [
"mime_guess", "mime_guess",
"native-tls", "native-tls",
"percent-encoding", "percent-encoding",
"pin-project-lite 0.1.11", "pin-project-lite 0.1.12",
"rustls", "rustls",
"serde", "serde",
"serde_json", "serde_json",
@ -2038,18 +2025,6 @@ dependencies = [
"smallvec", "smallvec",
] ]
[[package]]
name = "rust-argon2"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
dependencies = [
"base64 0.13.0",
"blake2b_simd",
"constant_time_eq",
"crossbeam-utils",
]
[[package]] [[package]]
name = "rustc-demangle" name = "rustc-demangle"
version = "0.1.18" version = "0.1.18"
@ -2075,6 +2050,12 @@ dependencies = [
"webpki", "webpki",
] ]
[[package]]
name = "rustversion"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb5d2a036dc6d2d8fd16fde3498b04306e29bd193bf306a57427019b823d5acd"
[[package]] [[package]]
name = "ryu" name = "ryu"
version = "1.0.5" version = "1.0.5"
@ -2109,9 +2090,9 @@ dependencies = [
[[package]] [[package]]
name = "security-framework" name = "security-framework"
version = "2.0.0" version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1759c2e3c8580017a484a7ac56d3abc5a6c1feadf88db2f3633f12ae4268c69" checksum = "2dfd318104249865096c8da1dfabf09ddbb6d0330ea176812a62ec75e40c4166"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"core-foundation", "core-foundation",
@ -2122,9 +2103,9 @@ dependencies = [
[[package]] [[package]]
name = "security-framework-sys" name = "security-framework-sys"
version = "2.0.0" version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f99b9d5e26d2a71633cc4f2ebae7cc9f874044e0c351a27e17892d76dce5678b" checksum = "dee48cdde5ed250b0d3252818f646e174ab414036edb884dde62d80a3ac6082d"
dependencies = [ dependencies = [
"core-foundation-sys", "core-foundation-sys",
"libc", "libc",
@ -2132,9 +2113,9 @@ dependencies = [
[[package]] [[package]]
name = "serde" name = "serde"
version = "1.0.123" version = "1.0.124"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92d5161132722baa40d802cc70b15262b98258453e85e5d1d365c757c73869ae" checksum = "bd761ff957cb2a45fbb9ab3da6512de9de55872866160b23c25f1a841e99d29f"
dependencies = [ dependencies = [
"serde_derive", "serde_derive",
] ]
@ -2153,9 +2134,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_derive" name = "serde_derive"
version = "1.0.123" version = "1.0.124"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9391c295d64fc0abb2c556bad848f33cb8296276b1ad2677d1ae1ace4f258f31" checksum = "1800f7693e94e186f5e25a28291ae1570da908aff7d97a095dec1e56ff99069b"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -2164,9 +2145,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_json" name = "serde_json"
version = "1.0.62" version = "1.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea1c6153794552ea7cf7cf63b1231a25de00ec90db326ba6264440fa08e31486" checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79"
dependencies = [ dependencies = [
"itoa", "itoa",
"ryu", "ryu",
@ -2292,9 +2273,9 @@ dependencies = [
[[package]] [[package]]
name = "slog-term" name = "slog-term"
version = "2.6.0" version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab1d807cf71129b05ce36914e1dbb6fbfbdecaf686301cb457f4fa967f9f5b6" checksum = "95c1e7e5aab61ced6006149ea772770b84a0d16ce0f7885def313e4829946d76"
dependencies = [ dependencies = [
"atty", "atty",
"chrono", "chrono",
@ -2371,9 +2352,9 @@ checksum = "1e81da0851ada1f3e9d4312c704aa4f8806f0f9d69faaf8df2f3464b4a9437c2"
[[package]] [[package]]
name = "syn" name = "syn"
version = "1.0.60" version = "1.0.62"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c700597eca8a5a762beb35753ef6b94df201c81cca676604f547495a0d7f0081" checksum = "123a78a3596b24fee53a6464ce52d8ecbf62241e6294c7e7fe12086cd161f512"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -2400,9 +2381,9 @@ checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60"
[[package]] [[package]]
name = "tap" name = "tap"
version = "1.0.0" version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36474e732d1affd3a6ed582781b3683df3d0563714c59c39591e8ff707cf078e" checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
[[package]] [[package]]
name = "tempfile" name = "tempfile"
@ -2413,7 +2394,7 @@ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"libc", "libc",
"rand 0.8.3", "rand 0.8.3",
"redox_syscall 0.2.4", "redox_syscall",
"remove_dir_all", "remove_dir_all",
"winapi 0.3.9", "winapi 0.3.9",
] ]
@ -2431,11 +2412,12 @@ dependencies = [
[[package]] [[package]]
name = "term" name = "term"
version = "0.6.1" version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0863a3345e70f61d613eab32ee046ccd1bcc5f9105fe402c61fcd0c13eeb8b5" checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
dependencies = [ dependencies = [
"dirs", "dirs-next",
"rustversion",
"winapi 0.3.9", "winapi 0.3.9",
] ]
@ -2450,18 +2432,18 @@ dependencies = [
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "1.0.23" version = "1.0.24"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76cc616c6abf8c8928e2fdcc0dbfab37175edd8fb49a4641066ad1364fdab146" checksum = "e0f4a65597094d4483ddaed134f409b2cb7c1beccf25201a9f73c719254fa98e"
dependencies = [ dependencies = [
"thiserror-impl", "thiserror-impl",
] ]
[[package]] [[package]]
name = "thiserror-impl" name = "thiserror-impl"
version = "1.0.23" version = "1.0.24"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9be73a2caec27583d0046ef3796c3794f868a5bc813db689eed00c7631275cd1" checksum = "7765189610d8241a44529806d6fd1f2e0a08734313a35d5b3a556f92b381f3c0"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -2522,7 +2504,7 @@ dependencies = [
"memchr", "memchr",
"mio", "mio",
"num_cpus", "num_cpus",
"pin-project-lite 0.1.11", "pin-project-lite 0.1.12",
"slab", "slab",
] ]
@ -2580,7 +2562,7 @@ dependencies = [
"futures-core", "futures-core",
"futures-sink", "futures-sink",
"log", "log",
"pin-project-lite 0.1.11", "pin-project-lite 0.1.12",
"tokio", "tokio",
] ]
@ -2601,13 +2583,13 @@ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
[[package]] [[package]]
name = "tracing" name = "tracing"
version = "0.1.23" version = "0.1.25"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d40a22fd029e33300d8d89a5cc8ffce18bb7c587662f54629e94c9de5487f3" checksum = "01ebdc2bb4498ab1ab5f5b73c5803825e60199229ccba0698170e3be0e7f959f"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"log", "log",
"pin-project-lite 0.2.4", "pin-project-lite 0.2.6",
"tracing-core", "tracing-core",
] ]
@ -2622,11 +2604,11 @@ dependencies = [
[[package]] [[package]]
name = "tracing-futures" name = "tracing-futures"
version = "0.2.4" version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab7bb6f14721aa00656086e9335d363c5c8747bae02ebe32ea2c7dece5689b4c" checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [ dependencies = [
"pin-project 0.4.27", "pin-project",
"tracing", "tracing",
] ]
@ -2714,9 +2696,9 @@ dependencies = [
[[package]] [[package]]
name = "unicode-normalization" name = "unicode-normalization"
version = "0.1.16" version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a13e63ab62dbe32aeee58d1c5408d35c36c392bba5d9d3142287219721afe606" checksum = "07fbfce1c8a97d547e8b5334978438d9d6ec8c20e38f56d4a4374d181493eaef"
dependencies = [ dependencies = [
"tinyvec", "tinyvec",
] ]
@ -2753,9 +2735,9 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]] [[package]]
name = "url" name = "url"
version = "2.2.0" version = "2.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5909f2b0817350449ed73e8bcd81c8c3c8d9a7a5d8acba4b27db277f1868976e" checksum = "9ccd964113622c8e9322cfac19eb1004a07e636c545f325da085d5cdde6f1f8b"
dependencies = [ dependencies = [
"form_urlencoded", "form_urlencoded",
"idna", "idna",
@ -2815,9 +2797,9 @@ checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
[[package]] [[package]]
name = "wasm-bindgen" name = "wasm-bindgen"
version = "0.2.70" version = "0.2.71"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55c0f7123de74f0dab9b7d00fd614e7b19349cd1e2f5252bbe9b1754b59433be" checksum = "7ee1280240b7c461d6a0071313e08f34a60b0365f14260362e5a2b17d1d31aa7"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"serde", "serde",
@ -2827,9 +2809,9 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-backend" name = "wasm-bindgen-backend"
version = "0.2.70" version = "0.2.71"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7bc45447f0d4573f3d65720f636bbcc3dd6ce920ed704670118650bcd47764c7" checksum = "5b7d8b6942b8bb3a9b0e73fc79b98095a27de6fa247615e59d096754a3bc2aa8"
dependencies = [ dependencies = [
"bumpalo", "bumpalo",
"lazy_static", "lazy_static",
@ -2842,9 +2824,9 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-futures" name = "wasm-bindgen-futures"
version = "0.4.20" version = "0.4.21"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3de431a2910c86679c34283a33f66f4e4abd7e0aec27b6669060148872aadf94" checksum = "8e67a5806118af01f0d9045915676b22aaebecf4178ae7021bc171dab0b897ab"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"js-sys", "js-sys",
@ -2854,9 +2836,9 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-macro" name = "wasm-bindgen-macro"
version = "0.2.70" version = "0.2.71"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b8853882eef39593ad4174dd26fc9865a64e84026d223f63bb2c42affcbba2c" checksum = "e5ac38da8ef716661f0f36c0d8320b89028efe10c7c0afde65baffb496ce0d3b"
dependencies = [ dependencies = [
"quote", "quote",
"wasm-bindgen-macro-support", "wasm-bindgen-macro-support",
@ -2864,9 +2846,9 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-macro-support" name = "wasm-bindgen-macro-support"
version = "0.2.70" version = "0.2.71"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4133b5e7f2a531fa413b3a1695e925038a05a71cf67e87dafa295cb645a01385" checksum = "cc053ec74d454df287b9374ee8abb36ffd5acb95ba87da3ba5b7d3fe20eb401e"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -2877,15 +2859,15 @@ dependencies = [
[[package]] [[package]]
name = "wasm-bindgen-shared" name = "wasm-bindgen-shared"
version = "0.2.70" version = "0.2.71"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd4945e4943ae02d15c13962b38a5b1e81eadd4b71214eee75af64a4d6a4fd64" checksum = "7d6f8ec44822dd71f5f221a5847fb34acd9060535c1211b70a05844c0f6383b1"
[[package]] [[package]]
name = "web-sys" name = "web-sys"
version = "0.3.47" version = "0.3.48"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c40dc691fc48003eba817c38da7113c15698142da971298003cac3ef175680b3" checksum = "ec600b26223b2948cedfde2a0aa6756dcf1fef616f43d7b3097aaf53a6c4d92b"
dependencies = [ dependencies = [
"js-sys", "js-sys",
"wasm-bindgen", "wasm-bindgen",

View file

@ -112,10 +112,10 @@ rust_library(
"@raze__http__0_2_3//:http", "@raze__http__0_2_3//:http",
"@raze__hyper_timeout__0_3_1//:hyper_timeout", "@raze__hyper_timeout__0_3_1//:hyper_timeout",
"@raze__mime_guess__2_0_3//:mime_guess", "@raze__mime_guess__2_0_3//:mime_guess",
"@raze__serde__1_0_123//:serde", "@raze__serde__1_0_124//:serde",
"@raze__serde_json__1_0_62//:serde_json", "@raze__serde_json__1_0_64//:serde_json",
"@raze__serde_urlencoded__0_6_1//:serde_urlencoded", "@raze__serde_urlencoded__0_6_1//:serde_urlencoded",
"@raze__url__2_2_0//:url", "@raze__url__2_2_1//:url",
] + selects.with_or({ ] + selects.with_or({
# cfg(not(target_arch = "wasm32")) # cfg(not(target_arch = "wasm32"))
( (
@ -128,8 +128,8 @@ rust_library(
): [ ): [
"@raze__base64__0_13_0//:base64", "@raze__base64__0_13_0//:base64",
"@raze__encoding_rs__0_8_28//:encoding_rs", "@raze__encoding_rs__0_8_28//:encoding_rs",
"@raze__futures_core__0_3_12//:futures_core", "@raze__futures_core__0_3_13//:futures_core",
"@raze__futures_util__0_3_12//:futures_util", "@raze__futures_util__0_3_13//:futures_util",
"@raze__http_body__0_3_1//:http_body", "@raze__http_body__0_3_1//:http_body",
"@raze__hyper__0_13_10//:hyper", "@raze__hyper__0_13_10//:hyper",
"@raze__ipnet__2_3_0//:ipnet", "@raze__ipnet__2_3_0//:ipnet",
@ -137,7 +137,7 @@ rust_library(
"@raze__log__0_4_14//:log", "@raze__log__0_4_14//:log",
"@raze__mime__0_3_16//:mime", "@raze__mime__0_3_16//:mime",
"@raze__percent_encoding__2_1_0//:percent_encoding", "@raze__percent_encoding__2_1_0//:percent_encoding",
"@raze__pin_project_lite__0_1_11//:pin_project_lite", "@raze__pin_project_lite__0_1_12//:pin_project_lite",
"@raze__tokio__0_2_25//:tokio", "@raze__tokio__0_2_25//:tokio",
"@raze__tokio_socks__0_3_0//:tokio_socks", "@raze__tokio_socks__0_3_0//:tokio_socks",
], ],

File diff suppressed because it is too large Load diff

View file

@ -10,7 +10,7 @@
}, },
{ {
"name": "adler", "name": "adler",
"version": "0.2.3", "version": "1.0.2",
"authors": "Jonas Schievink <jonasschievink@gmail.com>", "authors": "Jonas Schievink <jonasschievink@gmail.com>",
"repository": "https://github.com/jonas-schievink/adler.git", "repository": "https://github.com/jonas-schievink/adler.git",
"license": "0BSD OR Apache-2.0 OR MIT", "license": "0BSD OR Apache-2.0 OR MIT",
@ -37,7 +37,7 @@
}, },
{ {
"name": "ammonia", "name": "ammonia",
"version": "3.1.0", "version": "3.1.1",
"authors": "Michael Howell <michael@notriddle.com>", "authors": "Michael Howell <michael@notriddle.com>",
"repository": "https://github.com/rust-ammonia/ammonia", "repository": "https://github.com/rust-ammonia/ammonia",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -154,7 +154,7 @@
}, },
{ {
"name": "async-trait", "name": "async-trait",
"version": "0.1.42", "version": "0.1.47",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/async-trait", "repository": "https://github.com/dtolnay/async-trait",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -217,22 +217,13 @@
}, },
{ {
"name": "bitvec", "name": "bitvec",
"version": "0.19.4", "version": "0.19.5",
"authors": "myrrlyn <self@myrrlyn.dev>", "authors": "myrrlyn <self@myrrlyn.dev>",
"repository": "https://github.com/myrrlyn/bitvec", "repository": "https://github.com/myrrlyn/bitvec",
"license": "MIT", "license": "MIT",
"license_file": null, "license_file": null,
"description": "A crate for manipulating memory, bit by bit" "description": "A crate for manipulating memory, bit by bit"
}, },
{
"name": "blake2b_simd",
"version": "0.5.11",
"authors": "Jack O'Connor",
"repository": "https://github.com/oconnor663/blake2_simd",
"license": "MIT",
"license_file": null,
"description": "a pure Rust BLAKE2b implementation with dynamic SIMD"
},
{ {
"name": "blake3", "name": "blake3",
"version": "0.3.7", "version": "0.3.7",
@ -244,7 +235,7 @@
}, },
{ {
"name": "bumpalo", "name": "bumpalo",
"version": "3.6.0", "version": "3.6.1",
"authors": "Nick Fitzgerald <fitzgen@gmail.com>", "authors": "Nick Fitzgerald <fitzgen@gmail.com>",
"repository": "https://github.com/fitzgen/bumpalo", "repository": "https://github.com/fitzgen/bumpalo",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -289,7 +280,7 @@
}, },
{ {
"name": "cc", "name": "cc",
"version": "1.0.66", "version": "1.0.67",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/alexcrichton/cc-rs", "repository": "https://github.com/alexcrichton/cc-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -379,7 +370,7 @@
}, },
{ {
"name": "crossbeam-utils", "name": "crossbeam-utils",
"version": "0.8.1", "version": "0.8.3",
"authors": "The Crossbeam Project Developers", "authors": "The Crossbeam Project Developers",
"repository": "https://github.com/crossbeam-rs/crossbeam", "repository": "https://github.com/crossbeam-rs/crossbeam",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -423,22 +414,22 @@
"description": "Traits for cryptographic hash functions" "description": "Traits for cryptographic hash functions"
}, },
{ {
"name": "dirs", "name": "dirs-next",
"version": "2.0.2", "version": "2.0.0",
"authors": "Simon Ochsenreither <simon@ochsenreither.de>", "authors": "The @xdg-rs members",
"repository": "https://github.com/soc/dirs-rs", "repository": "https://github.com/xdg-rs/dirs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "A tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS." "description": "A tiny low-level library that provides platform-specific standard locations of directories for config, cache and other data on Linux, Windows, macOS and Redox by leveraging the mechanisms defined by the XDG base/user directory specifications on Linux, the Known Folder API on Windows, and the Standard Directory guidelines on macOS."
}, },
{ {
"name": "dirs-sys", "name": "dirs-sys-next",
"version": "0.3.5", "version": "0.1.2",
"authors": "Simon Ochsenreither <simon@ochsenreither.de>", "authors": "The @xdg-rs members",
"repository": "https://github.com/dirs-dev/dirs-sys-rs", "repository": "https://github.com/xdg-rs/dirs/tree/master/dirs-sys",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "System-level helper functions for the dirs and directories crates." "description": "system-level helper functions for the dirs and directories crates"
}, },
{ {
"name": "dtoa", "name": "dtoa",
@ -469,7 +460,7 @@
}, },
{ {
"name": "env_logger", "name": "env_logger",
"version": "0.8.2", "version": "0.8.3",
"authors": "The Rust Project Developers", "authors": "The Rust Project Developers",
"repository": "https://github.com/env-logger-rs/env_logger/", "repository": "https://github.com/env-logger-rs/env_logger/",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -595,7 +586,7 @@
}, },
{ {
"name": "form_urlencoded", "name": "form_urlencoded",
"version": "1.0.0", "version": "1.0.1",
"authors": "The rust-url developers", "authors": "The rust-url developers",
"repository": "https://github.com/servo/rust-url", "repository": "https://github.com/servo/rust-url",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -640,7 +631,7 @@
}, },
{ {
"name": "futures", "name": "futures",
"version": "0.3.12", "version": "0.3.13",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -649,7 +640,7 @@
}, },
{ {
"name": "futures-channel", "name": "futures-channel",
"version": "0.3.12", "version": "0.3.13",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -658,7 +649,7 @@
}, },
{ {
"name": "futures-core", "name": "futures-core",
"version": "0.3.12", "version": "0.3.13",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -667,7 +658,7 @@
}, },
{ {
"name": "futures-executor", "name": "futures-executor",
"version": "0.3.12", "version": "0.3.13",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -676,7 +667,7 @@
}, },
{ {
"name": "futures-io", "name": "futures-io",
"version": "0.3.12", "version": "0.3.13",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -685,7 +676,7 @@
}, },
{ {
"name": "futures-macro", "name": "futures-macro",
"version": "0.3.12", "version": "0.3.13",
"authors": "Taylor Cramer <cramertj@google.com>|Taiki Endo <te316e89@gmail.com>", "authors": "Taylor Cramer <cramertj@google.com>|Taiki Endo <te316e89@gmail.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -694,7 +685,7 @@
}, },
{ {
"name": "futures-sink", "name": "futures-sink",
"version": "0.3.12", "version": "0.3.13",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -703,7 +694,7 @@
}, },
{ {
"name": "futures-task", "name": "futures-task",
"version": "0.3.12", "version": "0.3.13",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -712,7 +703,7 @@
}, },
{ {
"name": "futures-util", "name": "futures-util",
"version": "0.3.12", "version": "0.3.13",
"authors": "Alex Crichton <alex@alexcrichton.com>", "authors": "Alex Crichton <alex@alexcrichton.com>",
"repository": "https://github.com/rust-lang/futures-rs", "repository": "https://github.com/rust-lang/futures-rs",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -820,7 +811,7 @@
}, },
{ {
"name": "hex", "name": "hex",
"version": "0.4.2", "version": "0.4.3",
"authors": "KokaKiwi <kokakiwi@kokakiwi.net>", "authors": "KokaKiwi <kokakiwi@kokakiwi.net>",
"repository": "https://github.com/KokaKiwi/rust-hex", "repository": "https://github.com/KokaKiwi/rust-hex",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -937,7 +928,7 @@
}, },
{ {
"name": "idna", "name": "idna",
"version": "0.2.1", "version": "0.2.2",
"authors": "The rust-url developers", "authors": "The rust-url developers",
"repository": "https://github.com/servo/rust-url/", "repository": "https://github.com/servo/rust-url/",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -946,7 +937,7 @@
}, },
{ {
"name": "indexmap", "name": "indexmap",
"version": "1.6.1", "version": "1.6.2",
"authors": "bluss|Josh Stone <cuviper@gmail.com>", "authors": "bluss|Josh Stone <cuviper@gmail.com>",
"repository": "https://github.com/bluss/indexmap", "repository": "https://github.com/bluss/indexmap",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -955,7 +946,16 @@
}, },
{ {
"name": "indoc", "name": "indoc",
"version": "1.0.3", "version": "0.3.6",
"authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/indoc",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Indented document literals"
},
{
"name": "indoc-impl",
"version": "0.3.6",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/indoc", "repository": "https://github.com/dtolnay/indoc",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1045,7 +1045,7 @@
}, },
{ {
"name": "js-sys", "name": "js-sys",
"version": "0.3.47", "version": "0.3.48",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1072,7 +1072,7 @@
}, },
{ {
"name": "lexical-core", "name": "lexical-core",
"version": "0.7.4", "version": "0.7.5",
"authors": "Alex Huszagh <ahuszagh@gmail.com>", "authors": "Alex Huszagh <ahuszagh@gmail.com>",
"repository": "https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-core", "repository": "https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-core",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1081,7 +1081,7 @@
}, },
{ {
"name": "libc", "name": "libc",
"version": "0.2.85", "version": "0.2.88",
"authors": "The Rust Project Developers", "authors": "The Rust Project Developers",
"repository": "https://github.com/rust-lang/libc", "repository": "https://github.com/rust-lang/libc",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1189,7 +1189,7 @@
}, },
{ {
"name": "miniz_oxide", "name": "miniz_oxide",
"version": "0.4.3", "version": "0.4.4",
"authors": "Frommi <daniil.liferenko@gmail.com>|oyvindln <oyvindln@users.noreply.github.com>", "authors": "Frommi <daniil.liferenko@gmail.com>|oyvindln <oyvindln@users.noreply.github.com>",
"repository": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide", "repository": "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide",
"license": "Apache-2.0 OR MIT OR Zlib", "license": "Apache-2.0 OR MIT OR Zlib",
@ -1261,7 +1261,7 @@
}, },
{ {
"name": "nom", "name": "nom",
"version": "6.1.0", "version": "6.1.2",
"authors": "contact@geoffroycouprie.com", "authors": "contact@geoffroycouprie.com",
"repository": "https://github.com/Geal/nom", "repository": "https://github.com/Geal/nom",
"license": "MIT", "license": "MIT",
@ -1333,7 +1333,7 @@
}, },
{ {
"name": "once_cell", "name": "once_cell",
"version": "1.5.2", "version": "1.7.2",
"authors": "Aleksey Kladov <aleksey.kladov@gmail.com>", "authors": "Aleksey Kladov <aleksey.kladov@gmail.com>",
"repository": "https://github.com/matklad/once_cell", "repository": "https://github.com/matklad/once_cell",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1378,7 +1378,7 @@
}, },
{ {
"name": "parking_lot_core", "name": "parking_lot_core",
"version": "0.8.2", "version": "0.8.3",
"authors": "Amanieu d'Antras <amanieu@gmail.com>", "authors": "Amanieu d'Antras <amanieu@gmail.com>",
"repository": "https://github.com/Amanieu/parking_lot", "repository": "https://github.com/Amanieu/parking_lot",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1387,13 +1387,22 @@
}, },
{ {
"name": "paste", "name": "paste",
"version": "1.0.4", "version": "0.1.18",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/paste", "repository": "https://github.com/dtolnay/paste",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
"license_file": null, "license_file": null,
"description": "Macros for all your token pasting needs" "description": "Macros for all your token pasting needs"
}, },
{
"name": "paste-impl",
"version": "0.1.18",
"authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/paste",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Implementation detail of the `paste` crate"
},
{ {
"name": "percent-encoding", "name": "percent-encoding",
"version": "2.1.0", "version": "2.1.0",
@ -1448,15 +1457,6 @@
"license_file": null, "license_file": null,
"description": "Support code shared by PHF libraries" "description": "Support code shared by PHF libraries"
}, },
{
"name": "pin-project",
"version": "0.4.27",
"authors": "Taiki Endo <te316e89@gmail.com>",
"repository": "https://github.com/taiki-e/pin-project",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "A crate for safe and ergonomic pin-projection."
},
{ {
"name": "pin-project", "name": "pin-project",
"version": "1.0.5", "version": "1.0.5",
@ -1466,15 +1466,6 @@
"license_file": null, "license_file": null,
"description": "A crate for safe and ergonomic pin-projection." "description": "A crate for safe and ergonomic pin-projection."
}, },
{
"name": "pin-project-internal",
"version": "0.4.27",
"authors": "Taiki Endo <te316e89@gmail.com>",
"repository": "https://github.com/taiki-e/pin-project",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "An internal crate to support pin_project - do not use directly"
},
{ {
"name": "pin-project-internal", "name": "pin-project-internal",
"version": "1.0.5", "version": "1.0.5",
@ -1486,7 +1477,7 @@
}, },
{ {
"name": "pin-project-lite", "name": "pin-project-lite",
"version": "0.1.11", "version": "0.1.12",
"authors": "Taiki Endo <te316e89@gmail.com>", "authors": "Taiki Endo <te316e89@gmail.com>",
"repository": "https://github.com/taiki-e/pin-project-lite", "repository": "https://github.com/taiki-e/pin-project-lite",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1495,7 +1486,7 @@
}, },
{ {
"name": "pin-project-lite", "name": "pin-project-lite",
"version": "0.2.4", "version": "0.2.6",
"authors": "Taiki Endo <te316e89@gmail.com>", "authors": "Taiki Endo <te316e89@gmail.com>",
"repository": "https://github.com/taiki-e/pin-project-lite", "repository": "https://github.com/taiki-e/pin-project-lite",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1630,7 +1621,7 @@
}, },
{ {
"name": "pyo3", "name": "pyo3",
"version": "0.13.1", "version": "0.13.2",
"authors": "PyO3 Project and Contributors <https://github.com/PyO3>", "authors": "PyO3 Project and Contributors <https://github.com/PyO3>",
"repository": "https://github.com/pyo3/pyo3", "repository": "https://github.com/pyo3/pyo3",
"license": "Apache-2.0", "license": "Apache-2.0",
@ -1639,7 +1630,7 @@
}, },
{ {
"name": "pyo3-macros", "name": "pyo3-macros",
"version": "0.13.1", "version": "0.13.2",
"authors": "PyO3 Project and Contributors <https://github.com/PyO3>", "authors": "PyO3 Project and Contributors <https://github.com/PyO3>",
"repository": "https://github.com/pyo3/pyo3", "repository": "https://github.com/pyo3/pyo3",
"license": "Apache-2.0", "license": "Apache-2.0",
@ -1648,7 +1639,7 @@
}, },
{ {
"name": "pyo3-macros-backend", "name": "pyo3-macros-backend",
"version": "0.13.1", "version": "0.13.2",
"authors": "PyO3 Project and Contributors <https://github.com/PyO3>", "authors": "PyO3 Project and Contributors <https://github.com/PyO3>",
"repository": "https://github.com/pyo3/pyo3", "repository": "https://github.com/pyo3/pyo3",
"license": "Apache-2.0", "license": "Apache-2.0",
@ -1657,7 +1648,7 @@
}, },
{ {
"name": "quote", "name": "quote",
"version": "1.0.8", "version": "1.0.9",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/quote", "repository": "https://github.com/dtolnay/quote",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1720,7 +1711,7 @@
}, },
{ {
"name": "rand_core", "name": "rand_core",
"version": "0.6.1", "version": "0.6.2",
"authors": "The Rand Project Developers|The Rust Project Developers", "authors": "The Rand Project Developers|The Rust Project Developers",
"repository": "https://github.com/rust-random/rand", "repository": "https://github.com/rust-random/rand",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1756,16 +1747,7 @@
}, },
{ {
"name": "redox_syscall", "name": "redox_syscall",
"version": "0.1.57", "version": "0.2.5",
"authors": "Jeremy Soller <jackpot51@gmail.com>",
"repository": "https://gitlab.redox-os.org/redox-os/syscall",
"license": "MIT",
"license_file": null,
"description": "A Rust library to access raw Redox system calls"
},
{
"name": "redox_syscall",
"version": "0.2.4",
"authors": "Jeremy Soller <jackpot51@gmail.com>", "authors": "Jeremy Soller <jackpot51@gmail.com>",
"repository": "https://gitlab.redox-os.org/redox-os/syscall", "repository": "https://gitlab.redox-os.org/redox-os/syscall",
"license": "MIT", "license": "MIT",
@ -1774,7 +1756,7 @@
}, },
{ {
"name": "redox_users", "name": "redox_users",
"version": "0.3.5", "version": "0.4.0",
"authors": "Jose Narvaez <goyox86@gmail.com>|Wesley Hershberger <mggmugginsmc@gmail.com>", "authors": "Jose Narvaez <goyox86@gmail.com>|Wesley Hershberger <mggmugginsmc@gmail.com>",
"repository": "https://gitlab.redox-os.org/redox-os/users", "repository": "https://gitlab.redox-os.org/redox-os/users",
"license": "MIT", "license": "MIT",
@ -1862,15 +1844,6 @@
"license_file": null, "license_file": null,
"description": "Ergonomic wrapper for SQLite" "description": "Ergonomic wrapper for SQLite"
}, },
{
"name": "rust-argon2",
"version": "0.8.3",
"authors": "Martijn Rijkeboer <mrr@sru-systems.com>",
"repository": "https://github.com/sru-systems/rust-argon2",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Rust implementation of the Argon2 password hashing function."
},
{ {
"name": "rustc-demangle", "name": "rustc-demangle",
"version": "0.1.18", "version": "0.1.18",
@ -1898,6 +1871,15 @@
"license_file": null, "license_file": null,
"description": "Rustls is a modern TLS library written in Rust." "description": "Rustls is a modern TLS library written in Rust."
}, },
{
"name": "rustversion",
"version": "1.0.4",
"authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/rustversion",
"license": "Apache-2.0 OR MIT",
"license_file": null,
"description": "Conditional compilation according to rustc compiler version"
},
{ {
"name": "ryu", "name": "ryu",
"version": "1.0.5", "version": "1.0.5",
@ -1936,7 +1918,7 @@
}, },
{ {
"name": "security-framework", "name": "security-framework",
"version": "2.0.0", "version": "2.1.1",
"authors": "Steven Fackler <sfackler@gmail.com>|Kornel <kornel@geekhood.net>", "authors": "Steven Fackler <sfackler@gmail.com>|Kornel <kornel@geekhood.net>",
"repository": "https://github.com/kornelski/rust-security-framework", "repository": "https://github.com/kornelski/rust-security-framework",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1945,7 +1927,7 @@
}, },
{ {
"name": "security-framework-sys", "name": "security-framework-sys",
"version": "2.0.0", "version": "2.1.1",
"authors": "Steven Fackler <sfackler@gmail.com>|Kornel <kornel@geekhood.net>", "authors": "Steven Fackler <sfackler@gmail.com>|Kornel <kornel@geekhood.net>",
"repository": "https://github.com/kornelski/rust-security-framework", "repository": "https://github.com/kornelski/rust-security-framework",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1954,7 +1936,7 @@
}, },
{ {
"name": "serde", "name": "serde",
"version": "1.0.123", "version": "1.0.124",
"authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>", "authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/serde-rs/serde", "repository": "https://github.com/serde-rs/serde",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1972,7 +1954,7 @@
}, },
{ {
"name": "serde_derive", "name": "serde_derive",
"version": "1.0.123", "version": "1.0.124",
"authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>", "authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/serde-rs/serde", "repository": "https://github.com/serde-rs/serde",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -1981,7 +1963,7 @@
}, },
{ {
"name": "serde_json", "name": "serde_json",
"version": "1.0.62", "version": "1.0.64",
"authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>", "authors": "Erick Tryzelaar <erick.tryzelaar@gmail.com>|David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/serde-rs/json", "repository": "https://github.com/serde-rs/json",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2098,7 +2080,7 @@
}, },
{ {
"name": "slog-term", "name": "slog-term",
"version": "2.6.0", "version": "2.8.0",
"authors": "Dawid Ciężarkiewicz <dpc@dpc.pw>", "authors": "Dawid Ciężarkiewicz <dpc@dpc.pw>",
"repository": "https://github.com/slog-rs/term", "repository": "https://github.com/slog-rs/term",
"license": "Apache-2.0 OR MIT OR MPL-2.0", "license": "Apache-2.0 OR MIT OR MPL-2.0",
@ -2179,7 +2161,7 @@
}, },
{ {
"name": "syn", "name": "syn",
"version": "1.0.60", "version": "1.0.62",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/syn", "repository": "https://github.com/dtolnay/syn",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2206,7 +2188,7 @@
}, },
{ {
"name": "tap", "name": "tap",
"version": "1.0.0", "version": "1.0.1",
"authors": "Elliott Linder <elliott.darfink@gmail.com>|myrrlyn <self@myrrlyn.dev>", "authors": "Elliott Linder <elliott.darfink@gmail.com>|myrrlyn <self@myrrlyn.dev>",
"repository": "https://github.com/myrrlyn/tap", "repository": "https://github.com/myrrlyn/tap",
"license": "MIT", "license": "MIT",
@ -2233,7 +2215,7 @@
}, },
{ {
"name": "term", "name": "term",
"version": "0.6.1", "version": "0.7.0",
"authors": "The Rust Project Developers|Steven Allen", "authors": "The Rust Project Developers|Steven Allen",
"repository": "https://github.com/Stebalien/term", "repository": "https://github.com/Stebalien/term",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2251,7 +2233,7 @@
}, },
{ {
"name": "thiserror", "name": "thiserror",
"version": "1.0.23", "version": "1.0.24",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/thiserror", "repository": "https://github.com/dtolnay/thiserror",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2260,7 +2242,7 @@
}, },
{ {
"name": "thiserror-impl", "name": "thiserror-impl",
"version": "1.0.23", "version": "1.0.24",
"authors": "David Tolnay <dtolnay@gmail.com>", "authors": "David Tolnay <dtolnay@gmail.com>",
"repository": "https://github.com/dtolnay/thiserror", "repository": "https://github.com/dtolnay/thiserror",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2386,7 +2368,7 @@
}, },
{ {
"name": "tracing", "name": "tracing",
"version": "0.1.23", "version": "0.1.25",
"authors": "Eliza Weisman <eliza@buoyant.io>|Tokio Contributors <team@tokio.rs>", "authors": "Eliza Weisman <eliza@buoyant.io>|Tokio Contributors <team@tokio.rs>",
"repository": "https://github.com/tokio-rs/tracing", "repository": "https://github.com/tokio-rs/tracing",
"license": "MIT", "license": "MIT",
@ -2404,7 +2386,7 @@
}, },
{ {
"name": "tracing-futures", "name": "tracing-futures",
"version": "0.2.4", "version": "0.2.5",
"authors": "Eliza Weisman <eliza@buoyant.io>|Tokio Contributors <team@tokio.rs>", "authors": "Eliza Weisman <eliza@buoyant.io>|Tokio Contributors <team@tokio.rs>",
"repository": "https://github.com/tokio-rs/tracing", "repository": "https://github.com/tokio-rs/tracing",
"license": "MIT", "license": "MIT",
@ -2494,7 +2476,7 @@
}, },
{ {
"name": "unicode-normalization", "name": "unicode-normalization",
"version": "0.1.16", "version": "0.1.17",
"authors": "kwantam <kwantam@gmail.com>|Manish Goregaokar <manishsmail@gmail.com>", "authors": "kwantam <kwantam@gmail.com>|Manish Goregaokar <manishsmail@gmail.com>",
"repository": "https://github.com/unicode-rs/unicode-normalization", "repository": "https://github.com/unicode-rs/unicode-normalization",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2548,7 +2530,7 @@
}, },
{ {
"name": "url", "name": "url",
"version": "2.2.0", "version": "2.2.1",
"authors": "The rust-url developers", "authors": "The rust-url developers",
"repository": "https://github.com/servo/rust-url", "repository": "https://github.com/servo/rust-url",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2620,7 +2602,7 @@
}, },
{ {
"name": "wasm-bindgen", "name": "wasm-bindgen",
"version": "0.2.70", "version": "0.2.71",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen", "repository": "https://github.com/rustwasm/wasm-bindgen",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2629,7 +2611,7 @@
}, },
{ {
"name": "wasm-bindgen-backend", "name": "wasm-bindgen-backend",
"version": "0.2.70", "version": "0.2.71",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2638,7 +2620,7 @@
}, },
{ {
"name": "wasm-bindgen-futures", "name": "wasm-bindgen-futures",
"version": "0.4.20", "version": "0.4.21",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/futures",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2647,7 +2629,7 @@
}, },
{ {
"name": "wasm-bindgen-macro", "name": "wasm-bindgen-macro",
"version": "0.2.70", "version": "0.2.71",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2656,7 +2638,7 @@
}, },
{ {
"name": "wasm-bindgen-macro-support", "name": "wasm-bindgen-macro-support",
"version": "0.2.70", "version": "0.2.71",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro-support",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2665,7 +2647,7 @@
}, },
{ {
"name": "wasm-bindgen-shared", "name": "wasm-bindgen-shared",
"version": "0.2.70", "version": "0.2.71",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",
@ -2674,7 +2656,7 @@
}, },
{ {
"name": "web-sys", "name": "web-sys",
"version": "0.3.47", "version": "0.3.48",
"authors": "The wasm-bindgen Developers", "authors": "The wasm-bindgen Developers",
"repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys", "repository": "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/web-sys",
"license": "Apache-2.0 OR MIT", "license": "Apache-2.0 OR MIT",

View file

@ -48,7 +48,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.3", version = "1.0.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View file

@ -48,7 +48,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "3.1.0", version = "3.1.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__html5ever__0_25_1//:html5ever", "@raze__html5ever__0_25_1//:html5ever",
@ -57,7 +57,7 @@ rust_library(
"@raze__markup5ever_rcdom__0_1_0//:markup5ever_rcdom", "@raze__markup5ever_rcdom__0_1_0//:markup5ever_rcdom",
"@raze__matches__0_1_8//:matches", "@raze__matches__0_1_8//:matches",
"@raze__tendril__0_4_2//:tendril", "@raze__tendril__0_4_2//:tendril",
"@raze__url__2_2_0//:url", "@raze__url__2_2_1//:url",
], ],
) )

View file

@ -51,6 +51,6 @@ rust_library(
deps = [ deps = [
"@raze__askama_shared__0_11_1//:askama_shared", "@raze__askama_shared__0_11_1//:askama_shared",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )

View file

@ -57,13 +57,13 @@ rust_library(
deps = [ deps = [
"@raze__askama_escape__0_10_1//:askama_escape", "@raze__askama_escape__0_10_1//:askama_escape",
"@raze__humansize__1_1_0//:humansize", "@raze__humansize__1_1_0//:humansize",
"@raze__nom__6_1_0//:nom", "@raze__nom__6_1_2//:nom",
"@raze__num_traits__0_2_14//:num_traits", "@raze__num_traits__0_2_14//:num_traits",
"@raze__percent_encoding__2_1_0//:percent_encoding", "@raze__percent_encoding__2_1_0//:percent_encoding",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__serde__1_0_123//:serde", "@raze__serde__1_0_124//:serde",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
"@raze__toml__0_5_8//:toml", "@raze__toml__0_5_8//:toml",
], ],
) )

View file

@ -63,9 +63,9 @@ rust_library(
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__flate2__1_0_20//:flate2", "@raze__flate2__1_0_20//:flate2",
"@raze__futures_core__0_3_12//:futures_core", "@raze__futures_core__0_3_13//:futures_core",
"@raze__memchr__2_3_4//:memchr", "@raze__memchr__2_3_4//:memchr",
"@raze__pin_project_lite__0_2_4//:pin_project_lite", "@raze__pin_project_lite__0_2_6//:pin_project_lite",
], ],
) )

View file

@ -25,7 +25,7 @@ package(default_visibility = [
]) ])
licenses([ licenses([
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT" "notice", # MIT from expression "MIT OR Apache-2.0"
]) ])
# Generated Targets # Generated Targets
@ -36,7 +36,7 @@ load(
) )
cargo_build_script( cargo_build_script(
name = "pin_project_internal_build_script", name = "async_trait_build_script",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
build_script_env = { build_script_env = {
}, },
@ -52,14 +52,14 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.4.27", version = "0.1.47",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
) )
rust_library( rust_library(
name = "pin_project_internal", name = "async_trait",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
], ],
@ -74,12 +74,16 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.4.27", version = "0.1.47",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":pin_project_internal_build_script", ":async_trait_build_script",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )
# Unsupported target "compiletest" with type "test" omitted
# Unsupported target "test" with type "test" omitted

View file

@ -62,7 +62,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({

View file

@ -65,8 +65,8 @@ rust_library(
deps = [ deps = [
"@raze__addr2line__0_14_1//:addr2line", "@raze__addr2line__0_14_1//:addr2line",
"@raze__cfg_if__1_0_0//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
"@raze__miniz_oxide__0_4_3//:miniz_oxide", "@raze__miniz_oxide__0_4_4//:miniz_oxide",
"@raze__object__0_23_0//:object", "@raze__object__0_23_0//:object",
"@raze__rustc_demangle__0_1_18//:rustc_demangle", "@raze__rustc_demangle__0_1_18//:rustc_demangle",
] + selects.with_or({ ] + selects.with_or({

View file

@ -54,12 +54,12 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.19.4", version = "0.19.5",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__funty__1_1_0//:funty", "@raze__funty__1_1_0//:funty",
"@raze__radium__0_5_3//:radium", "@raze__radium__0_5_3//:radium",
"@raze__tap__1_0_0//:tap", "@raze__tap__1_0_1//:tap",
"@raze__wyz__0_2_0//:wyz", "@raze__wyz__0_2_0//:wyz",
], ],
) )

View file

@ -1,58 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT"
])
# Generated Targets
rust_library(
name = "blake2b_simd",
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
"std",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.5.11",
# buildifier: leave-alone
deps = [
"@raze__arrayref__0_3_6//:arrayref",
"@raze__arrayvec__0_5_2//:arrayvec",
"@raze__constant_time_eq__0_1_5//:constant_time_eq",
],
)

View file

@ -57,7 +57,7 @@ cargo_build_script(
version = "0.3.7", version = "0.3.7",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__cc__1_0_66//:cc", "@raze__cc__1_0_67//:cc",
], ],
) )

View file

@ -49,7 +49,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "3.6.0", version = "3.6.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View file

@ -47,7 +47,7 @@ rust_binary(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.0.66", version = "1.0.67",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
# Binaries get an implicit dependency on their crate's lib # Binaries get an implicit dependency on their crate's lib
@ -71,7 +71,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.0.66", version = "1.0.67",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View file

@ -62,7 +62,7 @@ rust_library(
version = "0.4.19", version = "0.4.19",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
"@raze__num_integer__0_1_44//:num_integer", "@raze__num_integer__0_1_44//:num_integer",
"@raze__num_traits__0_2_14//:num_traits", "@raze__num_traits__0_2_14//:num_traits",
"@raze__time__0_1_43//:time", "@raze__time__0_1_43//:time",

View file

@ -51,7 +51,7 @@ rust_library(
version = "0.1.18", version = "0.1.18",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__once_cell__1_5_2//:once_cell", "@raze__once_cell__1_7_2//:once_cell",
] + selects.with_or({ ] + selects.with_or({
# cfg(not(target_os = "wasi")) # cfg(not(target_os = "wasi"))
( (
@ -62,7 +62,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc", "@io_bazel_rules_rust//rust/platform:x86_64-pc-windows-msvc",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View file

@ -50,7 +50,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__core_foundation_sys__0_8_2//:core_foundation_sys", "@raze__core_foundation_sys__0_8_2//:core_foundation_sys",
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
) )

View file

@ -61,7 +61,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__cfg_if__1_0_0//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__crossbeam_utils__0_8_1//:crossbeam_utils", "@raze__crossbeam_utils__0_8_3//:crossbeam_utils",
], ],
) )

View file

@ -41,7 +41,6 @@ cargo_build_script(
build_script_env = { build_script_env = {
}, },
crate_features = [ crate_features = [
"default",
"lazy_static", "lazy_static",
"std", "std",
], ],
@ -55,7 +54,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.8.1", version = "0.8.3",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__autocfg__1_0_1//:autocfg", "@raze__autocfg__1_0_1//:autocfg",
@ -68,7 +67,6 @@ rust_library(
name = "crossbeam_utils", name = "crossbeam_utils",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
"default",
"lazy_static", "lazy_static",
"std", "std",
], ],
@ -83,7 +81,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.8.1", version = "0.8.3",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":crossbeam_utils_build_script", ":crossbeam_utils_build_script",

View file

@ -51,7 +51,7 @@ rust_library(
version = "0.1.19", version = "0.1.19",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )

View file

@ -51,8 +51,8 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )

View file

@ -1,55 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
rust_library(
name = "dirs",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2015",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "2.0.2",
# buildifier: leave-alone
deps = [
"@raze__cfg_if__0_1_10//:cfg_if",
"@raze__dirs_sys__0_3_5//:dirs_sys",
],
)

View file

@ -0,0 +1,55 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
rust_library(
name = "dirs_next",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "2.0.0",
# buildifier: leave-alone
deps = [
"@raze__cfg_if__1_0_0//:cfg_if",
"@raze__dirs_sys_next__0_1_2//:dirs_sys_next",
],
)

View file

@ -31,7 +31,7 @@ licenses([
# Generated Targets # Generated Targets
rust_library( rust_library(
name = "dirs_sys", name = "dirs_sys_next",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
aliases = { aliases = {
}, },
@ -40,7 +40,7 @@ rust_library(
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",
data = [], data = [],
edition = "2015", edition = "2018",
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -48,7 +48,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.5", version = "0.1.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
] + selects.with_or({ ] + selects.with_or({
@ -60,7 +60,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({

View file

@ -30,22 +30,6 @@ licenses([
# Generated Targets # Generated Targets
# Unsupported target "custom_default_format" with type "example" omitted
# Unsupported target "custom_format" with type "example" omitted
# Unsupported target "custom_logger" with type "example" omitted
# Unsupported target "default" with type "example" omitted
# Unsupported target "direct_logger" with type "example" omitted
# Unsupported target "filters_from_code" with type "example" omitted
# Unsupported target "in_tests" with type "example" omitted
# Unsupported target "syslog_friendly_format" with type "example" omitted
rust_library( rust_library(
name = "env_logger", name = "env_logger",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
@ -67,7 +51,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.8.2", version = "0.8.3",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__atty__0_2_14//:atty", "@raze__atty__0_2_14//:atty",

View file

@ -79,8 +79,8 @@ rust_library(
deps = [ deps = [
":failure_derive_build_script", ":failure_derive_build_script",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
"@raze__synstructure__0_12_4//:synstructure", "@raze__synstructure__0_12_4//:synstructure",
], ],
) )

View file

@ -98,8 +98,8 @@ rust_library(
deps = [ deps = [
"@raze__cfg_if__1_0_0//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__crc32fast__1_2_1//:crc32fast", "@raze__crc32fast__1_2_1//:crc32fast",
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
"@raze__miniz_oxide__0_4_3//:miniz_oxide", "@raze__miniz_oxide__0_4_4//:miniz_oxide",
], ],
) )

View file

@ -38,7 +38,7 @@ rust_library(
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",
data = [], data = [],
edition = "2015", edition = "2018",
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -46,7 +46,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.0.0", version = "1.0.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__matches__0_1_8//:matches", "@raze__matches__0_1_8//:matches",

View file

@ -52,16 +52,16 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.12", version = "0.3.13",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures_channel__0_3_12//:futures_channel", "@raze__futures_channel__0_3_13//:futures_channel",
"@raze__futures_core__0_3_12//:futures_core", "@raze__futures_core__0_3_13//:futures_core",
"@raze__futures_executor__0_3_12//:futures_executor", "@raze__futures_executor__0_3_13//:futures_executor",
"@raze__futures_io__0_3_12//:futures_io", "@raze__futures_io__0_3_13//:futures_io",
"@raze__futures_sink__0_3_12//:futures_sink", "@raze__futures_sink__0_3_13//:futures_sink",
"@raze__futures_task__0_3_12//:futures_task", "@raze__futures_task__0_3_13//:futures_task",
"@raze__futures_util__0_3_12//:futures_util", "@raze__futures_util__0_3_13//:futures_util",
], ],
) )
@ -75,6 +75,8 @@ rust_library(
# Unsupported target "atomic_waker" with type "test" omitted # Unsupported target "atomic_waker" with type "test" omitted
# Unsupported target "auto_traits" with type "test" omitted
# Unsupported target "basic_combinators" with type "test" omitted # Unsupported target "basic_combinators" with type "test" omitted
# Unsupported target "buffer_unordered" with type "test" omitted # Unsupported target "buffer_unordered" with type "test" omitted

View file

@ -53,11 +53,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.12", version = "0.3.13",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures_core__0_3_12//:futures_core", "@raze__futures_core__0_3_13//:futures_core",
"@raze__futures_sink__0_3_12//:futures_sink", "@raze__futures_sink__0_3_13//:futures_sink",
], ],
) )

View file

@ -49,7 +49,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.12", version = "0.3.13",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View file

@ -49,12 +49,12 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.12", version = "0.3.13",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures_core__0_3_12//:futures_core", "@raze__futures_core__0_3_13//:futures_core",
"@raze__futures_task__0_3_12//:futures_task", "@raze__futures_task__0_3_13//:futures_task",
"@raze__futures_util__0_3_12//:futures_util", "@raze__futures_util__0_3_13//:futures_util",
], ],
) )

View file

@ -47,7 +47,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.12", version = "0.3.13",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View file

@ -49,11 +49,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.12", version = "0.3.13",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )

View file

@ -49,7 +49,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.12", version = "0.3.13",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View file

@ -35,7 +35,6 @@ rust_library(
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
"alloc", "alloc",
"once_cell",
"std", "std",
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
@ -49,9 +48,8 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.12", version = "0.3.13",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__once_cell__1_5_2//:once_cell",
], ],
) )

View file

@ -58,7 +58,7 @@ rust_library(
data = [], data = [],
edition = "2018", edition = "2018",
proc_macro_deps = [ proc_macro_deps = [
"@raze__futures_macro__0_3_12//:futures_macro", "@raze__futures_macro__0_3_13//:futures_macro",
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack", "@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
], ],
rustc_flags = [ rustc_flags = [
@ -68,16 +68,16 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.12", version = "0.3.13",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures_channel__0_3_12//:futures_channel", "@raze__futures_channel__0_3_13//:futures_channel",
"@raze__futures_core__0_3_12//:futures_core", "@raze__futures_core__0_3_13//:futures_core",
"@raze__futures_io__0_3_12//:futures_io", "@raze__futures_io__0_3_13//:futures_io",
"@raze__futures_sink__0_3_12//:futures_sink", "@raze__futures_sink__0_3_13//:futures_sink",
"@raze__futures_task__0_3_12//:futures_task", "@raze__futures_task__0_3_13//:futures_task",
"@raze__memchr__2_3_4//:memchr", "@raze__memchr__2_3_4//:memchr",
"@raze__pin_project_lite__0_2_4//:pin_project_lite", "@raze__pin_project_lite__0_2_6//:pin_project_lite",
"@raze__pin_utils__0_1_0//:pin_utils", "@raze__pin_utils__0_1_0//:pin_utils",
"@raze__proc_macro_nested__0_1_6//:proc_macro_nested", "@raze__proc_macro_nested__0_1_6//:proc_macro_nested",
"@raze__slab__0_4_2//:slab", "@raze__slab__0_4_2//:slab",

View file

@ -105,7 +105,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View file

@ -105,7 +105,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View file

@ -50,7 +50,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )

View file

@ -57,15 +57,15 @@ rust_library(
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__fnv__1_0_7//:fnv", "@raze__fnv__1_0_7//:fnv",
"@raze__futures_core__0_3_12//:futures_core", "@raze__futures_core__0_3_13//:futures_core",
"@raze__futures_sink__0_3_12//:futures_sink", "@raze__futures_sink__0_3_13//:futures_sink",
"@raze__futures_util__0_3_12//:futures_util", "@raze__futures_util__0_3_13//:futures_util",
"@raze__http__0_2_3//:http", "@raze__http__0_2_3//:http",
"@raze__indexmap__1_6_1//:indexmap", "@raze__indexmap__1_6_2//:indexmap",
"@raze__slab__0_4_2//:slab", "@raze__slab__0_4_2//:slab",
"@raze__tokio__0_2_25//:tokio", "@raze__tokio__0_2_25//:tokio",
"@raze__tokio_util__0_3_1//:tokio_util", "@raze__tokio_util__0_3_1//:tokio_util",
"@raze__tracing__0_1_23//:tracing", "@raze__tracing__0_1_25//:tracing",
"@raze__tracing_futures__0_2_4//:tracing_futures", "@raze__tracing_futures__0_2_5//:tracing_futures",
], ],
) )

View file

@ -50,6 +50,6 @@ rust_library(
version = "0.1.18", version = "0.1.18",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
) )

View file

@ -36,6 +36,7 @@ rust_library(
name = "hex", name = "hex",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
"alloc",
"default", "default",
"std", "std",
], ],
@ -50,7 +51,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.4.2", version = "0.4.3",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View file

@ -56,8 +56,8 @@ cargo_build_script(
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )

View file

@ -96,9 +96,9 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__futures_channel__0_3_12//:futures_channel", "@raze__futures_channel__0_3_13//:futures_channel",
"@raze__futures_core__0_3_12//:futures_core", "@raze__futures_core__0_3_13//:futures_core",
"@raze__futures_util__0_3_12//:futures_util", "@raze__futures_util__0_3_13//:futures_util",
"@raze__h2__0_2_7//:h2", "@raze__h2__0_2_7//:h2",
"@raze__http__0_2_3//:http", "@raze__http__0_2_3//:http",
"@raze__http_body__0_3_1//:http_body", "@raze__http_body__0_3_1//:http_body",
@ -109,7 +109,7 @@ rust_library(
"@raze__socket2__0_3_19//:socket2", "@raze__socket2__0_3_19//:socket2",
"@raze__tokio__0_2_25//:tokio", "@raze__tokio__0_2_25//:tokio",
"@raze__tower_service__0_3_1//:tower_service", "@raze__tower_service__0_3_1//:tower_service",
"@raze__tracing__0_1_23//:tracing", "@raze__tracing__0_1_25//:tracing",
"@raze__want__0_3_0//:want", "@raze__want__0_3_0//:want",
] + selects.with_or({ ] + selects.with_or({
# cfg(any(target_os = "linux", target_os = "macos")) # cfg(any(target_os = "linux", target_os = "macos"))

View file

@ -54,7 +54,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__futures_util__0_3_12//:futures_util", "@raze__futures_util__0_3_13//:futures_util",
"@raze__hyper__0_13_10//:hyper", "@raze__hyper__0_13_10//:hyper",
"@raze__log__0_4_14//:log", "@raze__log__0_4_14//:log",
"@raze__rustls__0_18_1//:rustls", "@raze__rustls__0_18_1//:rustls",

View file

@ -48,12 +48,12 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.1", version = "0.2.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__matches__0_1_8//:matches", "@raze__matches__0_1_8//:matches",
"@raze__unicode_bidi__0_3_4//:unicode_bidi", "@raze__unicode_bidi__0_3_4//:unicode_bidi",
"@raze__unicode_normalization__0_1_16//:unicode_normalization", "@raze__unicode_normalization__0_1_17//:unicode_normalization",
], ],
) )

View file

@ -52,7 +52,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.6.1", version = "1.6.2",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__autocfg__1_0_1//:autocfg", "@raze__autocfg__1_0_1//:autocfg",
@ -79,7 +79,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.6.1", version = "1.6.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":indexmap_build_script", ":indexmap_build_script",

61
cargo/remote/BUILD.indoc-0.3.6.bazel vendored Normal file
View file

@ -0,0 +1,61 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
rust_library(
name = "indoc",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
proc_macro_deps = [
"@raze__indoc_impl__0_3_6//:indoc_impl",
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
],
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.3.6",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "compiletest" with type "test" omitted
# Unsupported target "run-pass" with type "test" omitted

View file

@ -1,64 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
rust_library(
name = "indoc",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "proc-macro",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "1.0.3",
# buildifier: leave-alone
deps = [
"@raze__unindent__0_1_7//:unindent",
],
)
# Unsupported target "compiletest" with type "test" omitted
# Unsupported target "test_formatdoc" with type "test" omitted
# Unsupported target "test_indoc" with type "test" omitted
# Unsupported target "test_unindent" with type "test" omitted
# Unsupported target "test_writedoc" with type "test" omitted

View file

@ -0,0 +1,60 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
rust_library(
name = "indoc_impl",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "proc-macro",
data = [],
edition = "2018",
proc_macro_deps = [
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
],
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.3.6",
# buildifier: leave-alone
deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_62//:syn",
"@raze__unindent__0_1_7//:unindent",
],
)

View file

@ -50,7 +50,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )

View file

@ -60,7 +60,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View file

@ -46,10 +46,10 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.47", version = "0.3.48",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__wasm_bindgen__0_2_70//:wasm_bindgen", "@raze__wasm_bindgen__0_2_71//:wasm_bindgen",
], ],
) )

View file

@ -59,7 +59,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.7.4", version = "0.7.5",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
@ -88,13 +88,13 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.7.4", version = "0.7.5",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":lexical_core_build_script", ":lexical_core_build_script",
"@raze__arrayvec__0_5_2//:arrayvec", "@raze__arrayvec__0_5_2//:arrayvec",
"@raze__bitflags__1_2_1//:bitflags", "@raze__bitflags__1_2_1//:bitflags",
"@raze__cfg_if__0_1_10//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__ryu__1_0_5//:ryu", "@raze__ryu__1_0_5//:ryu",
"@raze__static_assertions__1_1_0//:static_assertions", "@raze__static_assertions__1_1_0//:static_assertions",
], ],

View file

@ -55,7 +55,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.85", version = "0.2.88",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
@ -80,7 +80,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.85", version = "0.2.88",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":libc_build_script", ":libc_build_script",

View file

@ -64,7 +64,7 @@ cargo_build_script(
version = "0.20.1", version = "0.20.1",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__cc__1_0_66//:cc", "@raze__cc__1_0_67//:cc",
"@raze__pkg_config__0_3_19//:pkg_config", "@raze__pkg_config__0_3_19//:pkg_config",
] + selects.with_or({ ] + selects.with_or({
# cfg(target_env = "msvc") # cfg(target_env = "msvc")

View file

@ -46,7 +46,7 @@ cargo_build_script(
data = glob(["**"]), data = glob(["**"]),
edition = "2018", edition = "2018",
proc_macro_deps = [ proc_macro_deps = [
"@raze__serde_derive__1_0_123//:serde_derive", "@raze__serde_derive__1_0_124//:serde_derive",
], ],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
@ -59,8 +59,8 @@ cargo_build_script(
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__phf_codegen__0_8_0//:phf_codegen", "@raze__phf_codegen__0_8_0//:phf_codegen",
"@raze__serde__1_0_123//:serde", "@raze__serde__1_0_124//:serde",
"@raze__serde_json__1_0_62//:serde_json", "@raze__serde_json__1_0_64//:serde_json",
"@raze__string_cache_codegen__0_5_1//:string_cache_codegen", "@raze__string_cache_codegen__0_5_1//:string_cache_codegen",
], ],
) )

View file

@ -52,7 +52,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.4.3", version = "0.4.4",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__autocfg__1_0_1//:autocfg", "@raze__autocfg__1_0_1//:autocfg",
@ -75,10 +75,10 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.4.3", version = "0.4.4",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":miniz_oxide_build_script", ":miniz_oxide_build_script",
"@raze__adler__0_2_3//:adler", "@raze__adler__1_0_2//:adler",
], ],
) )

View file

@ -67,7 +67,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({

View file

@ -62,7 +62,7 @@ cargo_build_script(
"@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin", "@io_bazel_rules_rust//rust/platform:x86_64-apple-darwin",
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
): [ ): [
"@raze__security_framework_sys__2_0_0//:security_framework_sys", "@raze__security_framework_sys__2_1_1//:security_framework_sys",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({
@ -118,9 +118,9 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
): [ ): [
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
"@raze__security_framework__2_0_0//:security_framework", "@raze__security_framework__2_1_1//:security_framework",
"@raze__security_framework_sys__2_0_0//:security_framework_sys", "@raze__security_framework_sys__2_1_1//:security_framework_sys",
"@raze__tempfile__3_2_0//:tempfile", "@raze__tempfile__3_2_0//:tempfile",
], ],
"//conditions:default": [], "//conditions:default": [],

View file

@ -63,7 +63,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({

View file

@ -44,6 +44,7 @@ cargo_build_script(
"alloc", "alloc",
"bitvec", "bitvec",
"default", "default",
"funty",
"lexical", "lexical",
"lexical-core", "lexical-core",
"std", "std",
@ -58,7 +59,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "6.1.0", version = "6.1.2",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__version_check__0_9_2//:version_check", "@raze__version_check__0_9_2//:version_check",
@ -92,6 +93,7 @@ rust_library(
"alloc", "alloc",
"bitvec", "bitvec",
"default", "default",
"funty",
"lexical", "lexical",
"lexical-core", "lexical-core",
"std", "std",
@ -107,12 +109,13 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "6.1.0", version = "6.1.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":nom_build_script", ":nom_build_script",
"@raze__bitvec__0_19_4//:bitvec", "@raze__bitvec__0_19_5//:bitvec",
"@raze__lexical_core__0_7_4//:lexical_core", "@raze__funty__1_1_0//:funty",
"@raze__lexical_core__0_7_5//:lexical_core",
"@raze__memchr__2_3_4//:memchr", "@raze__memchr__2_3_4//:memchr",
], ],
) )

View file

@ -51,6 +51,6 @@ rust_library(
version = "1.13.0", version = "1.13.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
) )

View file

@ -53,7 +53,7 @@ rust_library(
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__proc_macro_crate__0_1_5//:proc_macro_crate", "@raze__proc_macro_crate__0_1_5//:proc_macro_crate",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )

View file

@ -50,6 +50,7 @@ rust_library(
crate_features = [ crate_features = [
"alloc", "alloc",
"default", "default",
"race",
"std", "std",
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
@ -63,7 +64,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.5.2", version = "1.7.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View file

@ -85,7 +85,7 @@ rust_library(
"@raze__cfg_if__1_0_0//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__foreign_types__0_3_2//:foreign_types", "@raze__foreign_types__0_3_2//:foreign_types",
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
"@raze__openssl_sys__0_9_60//:openssl_sys", "@raze__openssl_sys__0_9_60//:openssl_sys",
], ],
) )

View file

@ -56,7 +56,7 @@ cargo_build_script(
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__autocfg__1_0_1//:autocfg", "@raze__autocfg__1_0_1//:autocfg",
"@raze__cc__1_0_66//:cc", "@raze__cc__1_0_67//:cc",
"@raze__pkg_config__0_3_19//:pkg_config", "@raze__pkg_config__0_3_19//:pkg_config",
] + selects.with_or({ ] + selects.with_or({
# cfg(target_env = "msvc") # cfg(target_env = "msvc")
@ -91,7 +91,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":openssl_sys_build_script", ":openssl_sys_build_script",
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
] + selects.with_or({ ] + selects.with_or({
# cfg(target_env = "msvc") # cfg(target_env = "msvc")
( (

View file

@ -52,7 +52,7 @@ rust_library(
deps = [ deps = [
"@raze__instant__0_1_9//:instant", "@raze__instant__0_1_9//:instant",
"@raze__lock_api__0_4_2//:lock_api", "@raze__lock_api__0_4_2//:lock_api",
"@raze__parking_lot_core__0_8_2//:parking_lot_core", "@raze__parking_lot_core__0_8_3//:parking_lot_core",
], ],
) )

View file

@ -48,7 +48,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.8.2", version = "0.8.3",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__cfg_if__1_0_0//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
@ -63,7 +63,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({

View file

@ -31,14 +31,18 @@ licenses([
# Generated Targets # Generated Targets
rust_library( rust_library(
name = "async_trait", name = "paste",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "proc-macro", crate_type = "lib",
data = [], data = [],
edition = "2018", edition = "2018",
proc_macro_deps = [
"@raze__paste_impl__0_1_18//:paste_impl",
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -46,12 +50,9 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.1.42", version = "0.1.18",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote",
"@raze__syn__1_0_60//:syn",
], ],
) )

View file

@ -1,63 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
rust_library(
name = "paste",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "proc-macro",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "1.0.4",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "compiletest" with type "test" omitted
# Unsupported target "test_attr" with type "test" omitted
# Unsupported target "test_doc" with type "test" omitted
# Unsupported target "test_expr" with type "test" omitted
# Unsupported target "test_item" with type "test" omitted

View file

@ -0,0 +1,56 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
rust_library(
name = "paste_impl",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "proc-macro",
data = [],
edition = "2018",
proc_macro_deps = [
"@raze__proc_macro_hack__0_5_19//:proc_macro_hack",
],
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.1.18",
# buildifier: leave-alone
deps = [
],
)

View file

@ -62,7 +62,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__fixedbitset__0_2_0//:fixedbitset", "@raze__fixedbitset__0_2_0//:fixedbitset",
"@raze__indexmap__1_6_1//:indexmap", "@raze__indexmap__1_6_2//:indexmap",
], ],
) )

View file

@ -1,104 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # Apache-2.0 from expression "Apache-2.0 OR MIT"
])
# Generated Targets
# Unsupported target "enum-default" with type "example" omitted
# Unsupported target "enum-default-expanded" with type "example" omitted
# Unsupported target "not_unpin" with type "example" omitted
# Unsupported target "not_unpin-expanded" with type "example" omitted
# Unsupported target "pinned_drop" with type "example" omitted
# Unsupported target "pinned_drop-expanded" with type "example" omitted
# Unsupported target "project_replace" with type "example" omitted
# Unsupported target "project_replace-expanded" with type "example" omitted
# Unsupported target "struct-default" with type "example" omitted
# Unsupported target "struct-default-expanded" with type "example" omitted
# Unsupported target "unsafe_unpin" with type "example" omitted
# Unsupported target "unsafe_unpin-expanded" with type "example" omitted
rust_library(
name = "pin_project",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
proc_macro_deps = [
"@raze__pin_project_internal__0_4_27//:pin_project_internal",
],
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.4.27",
# buildifier: leave-alone
deps = [
],
)
# Unsupported target "cfg" with type "test" omitted
# Unsupported target "compiletest" with type "test" omitted
# Unsupported target "drop_order" with type "test" omitted
# Unsupported target "lint" with type "test" omitted
# Unsupported target "pin_project" with type "test" omitted
# Unsupported target "pinned_drop" with type "test" omitted
# Unsupported target "project" with type "test" omitted
# Unsupported target "project_ref" with type "test" omitted
# Unsupported target "project_replace" with type "test" omitted
# Unsupported target "repr_packed" with type "test" omitted
# Unsupported target "sized" with type "test" omitted
# Unsupported target "unsafe_unpin" with type "test" omitted

View file

@ -50,7 +50,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )

View file

@ -46,7 +46,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.1.11", version = "0.1.12",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View file

@ -46,7 +46,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.4", version = "0.2.6",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],
@ -56,6 +56,8 @@ rust_library(
# Unsupported target "drop_order" with type "test" omitted # Unsupported target "drop_order" with type "test" omitted
# Unsupported target "expandtest" with type "test" omitted
# Unsupported target "lint" with type "test" omitted # Unsupported target "lint" with type "test" omitted
# Unsupported target "proper_unpin" with type "test" omitted # Unsupported target "proper_unpin" with type "test" omitted

View file

@ -52,7 +52,7 @@ rust_library(
"@raze__anyhow__1_0_38//:anyhow", "@raze__anyhow__1_0_38//:anyhow",
"@raze__itertools__0_9_0//:itertools", "@raze__itertools__0_9_0//:itertools",
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )

View file

@ -63,7 +63,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.13.1", version = "0.13.2",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
@ -104,9 +104,7 @@ rust_library(
edition = "2018", edition = "2018",
proc_macro_deps = [ proc_macro_deps = [
"@raze__ctor__0_1_19//:ctor", "@raze__ctor__0_1_19//:ctor",
"@raze__indoc__1_0_3//:indoc", "@raze__pyo3_macros__0_13_2//:pyo3_macros",
"@raze__paste__1_0_4//:paste",
"@raze__pyo3_macros__0_13_1//:pyo3_macros",
], ],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
@ -115,14 +113,16 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.13.1", version = "0.13.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":pyo3_build_script", ":pyo3_build_script",
"@raze__cfg_if__1_0_0//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__indoc__0_3_6//:indoc",
"@raze__inventory__0_1_10//:inventory", "@raze__inventory__0_1_10//:inventory",
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
"@raze__parking_lot__0_11_1//:parking_lot", "@raze__parking_lot__0_11_1//:parking_lot",
"@raze__paste__0_1_18//:paste",
"@raze__unindent__0_1_7//:unindent", "@raze__unindent__0_1_7//:unindent",
], ],
) )
@ -173,6 +173,8 @@ rust_library(
# Unsupported target "test_sequence" with type "test" omitted # Unsupported target "test_sequence" with type "test" omitted
# Unsupported target "test_serde" with type "test" omitted
# Unsupported target "test_string" with type "test" omitted # Unsupported target "test_string" with type "test" omitted
# Unsupported target "test_text_signature" with type "test" omitted # Unsupported target "test_text_signature" with type "test" omitted

View file

@ -46,11 +46,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.13.1", version = "0.13.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__pyo3_macros_backend__0_13_1//:pyo3_macros_backend", "@raze__pyo3_macros_backend__0_13_2//:pyo3_macros_backend",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )

View file

@ -46,11 +46,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.13.1", version = "0.13.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )

View file

@ -48,7 +48,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.0.8", version = "1.0.9",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",

View file

@ -85,7 +85,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View file

@ -60,7 +60,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__rand_chacha__0_3_0//:rand_chacha", "@raze__rand_chacha__0_3_0//:rand_chacha",
"@raze__rand_core__0_6_1//:rand_core", "@raze__rand_core__0_6_2//:rand_core",
] + selects.with_or({ ] + selects.with_or({
# cfg(unix) # cfg(unix)
( (
@ -70,7 +70,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-apple-ios", "@io_bazel_rules_rust//rust/platform:x86_64-apple-ios",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View file

@ -51,6 +51,6 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__ppv_lite86__0_2_10//:ppv_lite86", "@raze__ppv_lite86__0_2_10//:ppv_lite86",
"@raze__rand_core__0_6_1//:rand_core", "@raze__rand_core__0_6_2//:rand_core",
], ],
) )

View file

@ -49,7 +49,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.6.1", version = "0.6.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__getrandom__0_2_2//:getrandom", "@raze__getrandom__0_2_2//:getrandom",

View file

@ -49,6 +49,6 @@ rust_library(
version = "0.3.0", version = "0.3.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__rand_core__0_6_1//:rand_core", "@raze__rand_core__0_6_2//:rand_core",
], ],
) )

View file

@ -55,7 +55,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.4", version = "0.2.5",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bitflags__1_2_1//:bitflags", "@raze__bitflags__1_2_1//:bitflags",

View file

@ -1,59 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT"
])
# Generated Targets
rust_library(
name = "redox_users",
srcs = glob(["**/*.rs"]),
crate_features = [
"auth",
"default",
"rust-argon2",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2015",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.3.5",
# buildifier: leave-alone
deps = [
"@raze__getrandom__0_1_16//:getrandom",
"@raze__redox_syscall__0_1_57//:redox_syscall",
"@raze__rust_argon2__0_8_3//:rust_argon2",
],
)

View file

@ -30,24 +30,15 @@ licenses([
# Generated Targets # Generated Targets
alias(
name = "redox_syscall",
actual = ":syscall",
tags = [
"cargo-raze",
"manual",
],
)
rust_library( rust_library(
name = "syscall", name = "redox_users",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",
data = [], data = [],
edition = "2015", edition = "2018",
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
], ],
@ -55,8 +46,10 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.1.57", version = "0.4.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__getrandom__0_2_2//:getrandom",
"@raze__redox_syscall__0_2_5//:redox_syscall",
], ],
) )

View file

@ -50,7 +50,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__proc_macro2__1_0_24//:proc_macro2", "@raze__proc_macro2__1_0_24//:proc_macro2",
"@raze__quote__1_0_8//:quote", "@raze__quote__1_0_9//:quote",
"@raze__syn__1_0_60//:syn", "@raze__syn__1_0_62//:syn",
], ],
) )

View file

@ -86,10 +86,10 @@ rust_library(
"@raze__http__0_2_3//:http", "@raze__http__0_2_3//:http",
"@raze__hyper_timeout__0_3_1//:hyper_timeout", "@raze__hyper_timeout__0_3_1//:hyper_timeout",
"@raze__mime_guess__2_0_3//:mime_guess", "@raze__mime_guess__2_0_3//:mime_guess",
"@raze__serde__1_0_123//:serde", "@raze__serde__1_0_124//:serde",
"@raze__serde_json__1_0_62//:serde_json", "@raze__serde_json__1_0_64//:serde_json",
"@raze__serde_urlencoded__0_6_1//:serde_urlencoded", "@raze__serde_urlencoded__0_6_1//:serde_urlencoded",
"@raze__url__2_2_0//:url", "@raze__url__2_2_1//:url",
] + selects.with_or({ ] + selects.with_or({
# cfg(not(target_arch = "wasm32")) # cfg(not(target_arch = "wasm32"))
( (
@ -102,8 +102,8 @@ rust_library(
): [ ): [
"@raze__base64__0_13_0//:base64", "@raze__base64__0_13_0//:base64",
"@raze__encoding_rs__0_8_28//:encoding_rs", "@raze__encoding_rs__0_8_28//:encoding_rs",
"@raze__futures_core__0_3_12//:futures_core", "@raze__futures_core__0_3_13//:futures_core",
"@raze__futures_util__0_3_12//:futures_util", "@raze__futures_util__0_3_13//:futures_util",
"@raze__http_body__0_3_1//:http_body", "@raze__http_body__0_3_1//:http_body",
"@raze__hyper__0_13_10//:hyper", "@raze__hyper__0_13_10//:hyper",
"@raze__hyper_rustls__0_21_0//:hyper_rustls", "@raze__hyper_rustls__0_21_0//:hyper_rustls",
@ -114,7 +114,7 @@ rust_library(
"@raze__mime__0_3_16//:mime", "@raze__mime__0_3_16//:mime",
"@raze__native_tls__0_2_7//:native_tls", "@raze__native_tls__0_2_7//:native_tls",
"@raze__percent_encoding__2_1_0//:percent_encoding", "@raze__percent_encoding__2_1_0//:percent_encoding",
"@raze__pin_project_lite__0_1_11//:pin_project_lite", "@raze__pin_project_lite__0_1_12//:pin_project_lite",
"@raze__rustls__0_18_1//:rustls", "@raze__rustls__0_18_1//:rustls",
"@raze__tokio__0_2_25//:tokio", "@raze__tokio__0_2_25//:tokio",
"@raze__tokio_rustls__0_14_1//:tokio_rustls", "@raze__tokio_rustls__0_14_1//:tokio_rustls",

View file

@ -59,7 +59,7 @@ cargo_build_script(
version = "0.16.20", version = "0.16.20",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
"@raze__cc__1_0_66//:cc", "@raze__cc__1_0_67//:cc",
] + selects.with_or({ ] + selects.with_or({
# cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux")))) # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux"))))
( (
@ -147,8 +147,8 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:aarch64-unknown-linux-gnu",
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
"@raze__once_cell__1_5_2//:once_cell", "@raze__once_cell__1_7_2//:once_cell",
], ],
"//conditions:default": [], "//conditions:default": [],
}) + selects.with_or({ }) + selects.with_or({

View file

@ -1,70 +0,0 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
alias(
name = "rust_argon2",
actual = ":argon2",
tags = [
"cargo-raze",
"manual",
],
)
rust_library(
name = "argon2",
srcs = glob(["**/*.rs"]),
crate_features = [
"crossbeam-utils",
"default",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.8.3",
# buildifier: leave-alone
deps = [
"@raze__base64__0_13_0//:base64",
"@raze__blake2b_simd__0_5_11//:blake2b_simd",
"@raze__constant_time_eq__0_1_5//:constant_time_eq",
"@raze__crossbeam_utils__0_8_1//:crossbeam_utils",
],
)
# Unsupported target "integration_test" with type "test" omitted

View file

@ -0,0 +1,90 @@
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//cargo", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
# buildifier: disable=load-on-top
load(
"@io_bazel_rules_rust//cargo:cargo_build_script.bzl",
"cargo_build_script",
)
cargo_build_script(
name = "rustversion_build_script",
srcs = glob(["**/*.rs"]),
build_script_env = {
},
crate_features = [
],
crate_root = "build/build.rs",
data = glob(["**"]),
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "1.0.4",
visibility = ["//visibility:private"],
deps = [
],
)
rust_library(
name = "rustversion",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "proc-macro",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "1.0.4",
# buildifier: leave-alone
deps = [
":rustversion_build_script",
],
)
# Unsupported target "compiletest" with type "test" omitted
# Unsupported target "test_const" with type "test" omitted
# Unsupported target "test_eval" with type "test" omitted
# Unsupported target "test_parse" with type "test" omitted

View file

@ -54,13 +54,13 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "2.0.0", version = "2.1.1",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bitflags__1_2_1//:bitflags", "@raze__bitflags__1_2_1//:bitflags",
"@raze__core_foundation__0_9_1//:core_foundation", "@raze__core_foundation__0_9_1//:core_foundation",
"@raze__core_foundation_sys__0_8_2//:core_foundation_sys", "@raze__core_foundation_sys__0_8_2//:core_foundation_sys",
"@raze__libc__0_2_85//:libc", "@raze__libc__0_2_88//:libc",
"@raze__security_framework_sys__2_0_0//:security_framework_sys", "@raze__security_framework_sys__2_1_1//:security_framework_sys",
], ],
) )

Some files were not shown because too many files have changed in this diff Show more