- fix: Change name

GitOrigin-RevId: 35adbf7af45091f555c329d66b5ed1806e55461e
This commit is contained in:
the-superpirate 2021-02-21 13:48:18 +03:00
parent 778fae8384
commit c04df9341a
177 changed files with 847 additions and 665 deletions

View File

@ -200,6 +200,7 @@ class FillDocumentOperationUpdateDocumentScimagPbFromExternalSourceAction(BaseAc
self.crossref_client = CrossrefClient( self.crossref_client = CrossrefClient(
delay=1.0 / crossref['rps'], delay=1.0 / crossref['rps'],
max_retries=60, max_retries=60,
proxy_url=crossref.get('proxy_url'),
timeout=crossref.get('timeout'), timeout=crossref.get('timeout'),
user_agent=crossref.get('user_agent'), user_agent=crossref.get('user_agent'),
) )

View File

@ -2,7 +2,7 @@
nav.navbar.navbar-light.bg-light nav.navbar.navbar-light.bg-light
b-container b-container
nuxt-link(to="/" title="Go to search!").logo nuxt-link(to="/" title="Go to search!").logo
| > Nexus Search | > Nexus Cognitron
</template> </template>
<script> <script>

View File

@ -23,8 +23,8 @@ from nexus.pylon.sources import (
LibgenDoiSource, LibgenDoiSource,
LibgenMd5Source, LibgenMd5Source,
LibraryLolSource, LibraryLolSource,
SciHubDoSource,
SciHubSeSource, SciHubSeSource,
SciHubTwSource,
) )
from nexus.pylon.sources.specific import get_specific_sources_for_doi from nexus.pylon.sources.specific import get_specific_sources_for_doi
from python_socks import ProxyTimeoutError from python_socks import ProxyTimeoutError
@ -44,8 +44,8 @@ class PylonClient(AioThing):
sources = [] sources = []
sources.extend(get_specific_sources_for_doi(doi, proxy=self.proxy, resolve_proxy=self.resolve_proxy)) sources.extend(get_specific_sources_for_doi(doi, proxy=self.proxy, resolve_proxy=self.resolve_proxy))
sources.extend([ sources.extend([
SciHubDoSource(doi=doi, md5=md5, proxy=self.proxy, resolve_proxy=self.resolve_proxy),
SciHubSeSource(doi=doi, md5=md5, proxy=self.proxy, resolve_proxy=self.resolve_proxy), SciHubSeSource(doi=doi, md5=md5, proxy=self.proxy, resolve_proxy=self.resolve_proxy),
SciHubTwSource(doi=doi, md5=md5, proxy=self.proxy, resolve_proxy=self.resolve_proxy),
LibgenDoiSource(doi=doi, md5=md5, proxy=self.proxy, resolve_proxy=self.resolve_proxy), LibgenDoiSource(doi=doi, md5=md5, proxy=self.proxy, resolve_proxy=self.resolve_proxy),
]) ])
sources = filter(lambda x: x.is_enabled, sources) sources = filter(lambda x: x.is_enabled, sources)

View File

@ -1,12 +1,10 @@
from .base import BaseSource from .base import BaseSource
from .libgen_doi import LibgenDoiSource from .libgen_doi import LibgenDoiSource
from .libgen_md5 import LibgenMd5Source from .libgen_md5 import LibgenMd5Source
from .libgen_new import ( from .libgen_new import LibraryLolSource
LibraryLolSource,
)
from .scihub import ( from .scihub import (
SciHubDoSource,
SciHubSeSource, SciHubSeSource,
SciHubTwSource,
) )
__all__ = [ __all__ = [
@ -14,6 +12,6 @@ __all__ = [
'LibgenDoiSource', 'LibgenDoiSource',
'LibgenMd5Source', 'LibgenMd5Source',
'LibraryLolSource', 'LibraryLolSource',
'SciHubDoSource',
'SciHubSeSource', 'SciHubSeSource',
'SciHubTwSource',
] ]

View File

@ -76,20 +76,26 @@ class Md5Validator(BaseValidator):
def validate(self): def validate(self):
digest = self.v.hexdigest() digest = self.v.hexdigest()
if self.md5.lower() != self.v.hexdigest().lower(): if self.md5.lower() != digest.lower():
raise IncorrectMD5Error(requested_md5=self.md5, downloaded_md5=digest) raise IncorrectMD5Error(requested_md5=self.md5, downloaded_md5=digest)
class DoiValidator(BaseValidator): class DoiValidator(BaseValidator):
def __init__(self, doi: str): def __init__(self, doi: str, md5: Optional[str] = None):
self.doi = doi self.doi = doi
self.md5 = md5
self.file = bytes() self.file = bytes()
self.v = hashlib.md5()
def update(self, chunk): def update(self, chunk):
self.file += chunk self.file += chunk
self.v.update(chunk)
def validate(self): def validate(self):
return is_pdf(self.file) if self.md5 and self.md5.lower() == self.v.hexdigest().lower():
return
elif not is_pdf(self.file):
raise BadResponseError(doi=self.doi, file=str(self.file[:1000]))
class BaseSource(AioThing): class BaseSource(AioThing):
@ -197,6 +203,4 @@ class DoiSource(BaseSource):
self.md5 = md5 self.md5 = md5
def get_validator(self): def get_validator(self):
if self.md5: return DoiValidator(self.doi, md5=self.md5)
return Md5Validator(self.md5)
return DoiValidator(self.doi)

View File

@ -41,9 +41,9 @@ class SciHubSource(DoiSource):
error_log(RegexNotFoundError(url=url)) error_log(RegexNotFoundError(url=url))
class SciHubDoSource(SciHubSource):
base_url = 'https://sci-hub.do'
class SciHubSeSource(SciHubSource): class SciHubSeSource(SciHubSource):
base_url = 'https://sci-hub.se' base_url = 'https://sci-hub.se'
class SciHubTwSource(SciHubSource):
base_url = 'https://sci-hub.tw'

View File

@ -37,6 +37,7 @@ config = "0.10.1"
crc32fast = "1.2.0" crc32fast = "1.2.0"
criterion = "0.3.3" criterion = "0.3.3"
crossbeam = "0.7.3" crossbeam = "0.7.3"
crossbeam-channel = "0.5.0"
deadpool = "0.5.2" deadpool = "0.5.2"
deadpool-postgres = "0.5.6" deadpool-postgres = "0.5.6"
derive_more = "0.99.9" derive_more = "0.99.9"

View File

@ -113,7 +113,7 @@ alias(
alias( alias(
name = "backtrace", name = "backtrace",
actual = "@raze__backtrace__0_3_55//:backtrace", actual = "@raze__backtrace__0_3_56//:backtrace",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -257,7 +257,7 @@ alias(
alias( alias(
name = "criterion", name = "criterion",
actual = "@raze__criterion__0_3_3//:criterion", actual = "@raze__criterion__0_3_4//:criterion",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -273,6 +273,15 @@ alias(
], ],
) )
alias(
name = "crossbeam_channel",
actual = "@raze__crossbeam_channel__0_5_0//:crossbeam_channel",
tags = [
"cargo-raze",
"manual",
],
)
alias( alias(
name = "deadpool", name = "deadpool",
actual = "@raze__deadpool__0_5_2//:deadpool", actual = "@raze__deadpool__0_5_2//:deadpool",
@ -392,7 +401,7 @@ alias(
alias( alias(
name = "futures", name = "futures",
actual = "@raze__futures__0_3_10//:futures", actual = "@raze__futures__0_3_12//:futures",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -484,7 +493,7 @@ alias(
alias( alias(
name = "libc", name = "libc",
actual = "@raze__libc__0_2_82//:libc", actual = "@raze__libc__0_2_85//:libc",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -493,7 +502,7 @@ alias(
alias( alias(
name = "log", name = "log",
actual = "@raze__log__0_4_13//:log", actual = "@raze__log__0_4_14//:log",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -511,7 +520,7 @@ alias(
alias( alias(
name = "lru", name = "lru",
actual = "@raze__lru__0_6_3//:lru", actual = "@raze__lru__0_6_4//:lru",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -765,7 +774,7 @@ alias(
alias( alias(
name = "serde", name = "serde",
actual = "@raze__serde__1_0_119//:serde", actual = "@raze__serde__1_0_123//:serde",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -774,7 +783,7 @@ alias(
alias( alias(
name = "serde_derive", name = "serde_derive",
actual = "@raze__serde_derive__1_0_119//:serde_derive", actual = "@raze__serde_derive__1_0_123//:serde_derive",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -801,7 +810,7 @@ alias(
alias( alias(
name = "serde_yaml", name = "serde_yaml",
actual = "@raze__serde_yaml__0_8_15//:serde_yaml", actual = "@raze__serde_yaml__0_8_16//:serde_yaml",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -810,7 +819,7 @@ alias(
alias( alias(
name = "signal_hook", name = "signal_hook",
actual = "@raze__signal_hook__0_3_3//:signal_hook", actual = "@raze__signal_hook__0_3_4//:signal_hook",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -927,7 +936,7 @@ alias(
alias( alias(
name = "tar", name = "tar",
actual = "@raze__tar__0_4_30//:tar", actual = "@raze__tar__0_4_32//:tar",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -972,7 +981,7 @@ alias(
alias( alias(
name = "time", name = "time",
actual = "@raze__time__0_2_24//:time", actual = "@raze__time__0_2_25//:time",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",
@ -999,7 +1008,7 @@ alias(
alias( alias(
name = "tokio", name = "tokio",
actual = "@raze__tokio__0_2_24//:tokio", actual = "@raze__tokio__0_2_25//:tokio",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",

View File

@ -337,11 +337,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__backtrace__0_3_55", name = "raze__backtrace__0_3_56",
url = "https://crates.io/api/v1/crates/backtrace/0.3.55/download", url = "https://crates.io/api/v1/crates/backtrace/0.3.56/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "backtrace-0.3.55", strip_prefix = "backtrace-0.3.56",
build_file = Label("//rules/rust/remote:BUILD.backtrace-0.3.55.bazel"), build_file = Label("//rules/rust/remote:BUILD.backtrace-0.3.56.bazel"),
) )
maybe( maybe(
@ -490,11 +490,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__bumpalo__3_4_0", name = "raze__bumpalo__3_6_0",
url = "https://crates.io/api/v1/crates/bumpalo/3.4.0/download", url = "https://crates.io/api/v1/crates/bumpalo/3.6.0/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "bumpalo-3.4.0", strip_prefix = "bumpalo-3.6.0",
build_file = Label("//rules/rust/remote:BUILD.bumpalo-3.4.0.bazel"), build_file = Label("//rules/rust/remote:BUILD.bumpalo-3.6.0.bazel"),
) )
maybe( maybe(
@ -688,11 +688,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__criterion__0_3_3", name = "raze__criterion__0_3_4",
url = "https://crates.io/api/v1/crates/criterion/0.3.3/download", url = "https://crates.io/api/v1/crates/criterion/0.3.4/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "criterion-0.3.3", strip_prefix = "criterion-0.3.4",
build_file = Label("//rules/rust/remote:BUILD.criterion-0.3.3.bazel"), build_file = Label("//rules/rust/remote:BUILD.criterion-0.3.4.bazel"),
) )
maybe( maybe(
@ -940,11 +940,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__encoding_rs__0_8_26", name = "raze__encoding_rs__0_8_28",
url = "https://crates.io/api/v1/crates/encoding_rs/0.8.26/download", url = "https://crates.io/api/v1/crates/encoding_rs/0.8.28/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "encoding_rs-0.8.26", strip_prefix = "encoding_rs-0.8.28",
build_file = Label("//rules/rust/remote:BUILD.encoding_rs-0.8.26.bazel"), build_file = Label("//rules/rust/remote:BUILD.encoding_rs-0.8.28.bazel"),
) )
maybe( maybe(
@ -1021,20 +1021,20 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__filetime__0_2_13", name = "raze__filetime__0_2_14",
url = "https://crates.io/api/v1/crates/filetime/0.2.13/download", url = "https://crates.io/api/v1/crates/filetime/0.2.14/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "filetime-0.2.13", strip_prefix = "filetime-0.2.14",
build_file = Label("//rules/rust/remote:BUILD.filetime-0.2.13.bazel"), build_file = Label("//rules/rust/remote:BUILD.filetime-0.2.14.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__flate2__1_0_19", name = "raze__flate2__1_0_20",
url = "https://crates.io/api/v1/crates/flate2/1.0.19/download", url = "https://crates.io/api/v1/crates/flate2/1.0.20/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "flate2-1.0.19", strip_prefix = "flate2-1.0.20",
build_file = Label("//rules/rust/remote:BUILD.flate2-1.0.19.bazel"), build_file = Label("//rules/rust/remote:BUILD.flate2-1.0.20.bazel"),
) )
maybe( maybe(
@ -1111,83 +1111,83 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__futures__0_3_10", name = "raze__futures__0_3_12",
url = "https://crates.io/api/v1/crates/futures/0.3.10/download", url = "https://crates.io/api/v1/crates/futures/0.3.12/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "futures-0.3.10", strip_prefix = "futures-0.3.12",
build_file = Label("//rules/rust/remote:BUILD.futures-0.3.10.bazel"), build_file = Label("//rules/rust/remote:BUILD.futures-0.3.12.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__futures_channel__0_3_10", name = "raze__futures_channel__0_3_12",
url = "https://crates.io/api/v1/crates/futures-channel/0.3.10/download", url = "https://crates.io/api/v1/crates/futures-channel/0.3.12/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "futures-channel-0.3.10", strip_prefix = "futures-channel-0.3.12",
build_file = Label("//rules/rust/remote:BUILD.futures-channel-0.3.10.bazel"), build_file = Label("//rules/rust/remote:BUILD.futures-channel-0.3.12.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__futures_core__0_3_10", name = "raze__futures_core__0_3_12",
url = "https://crates.io/api/v1/crates/futures-core/0.3.10/download", url = "https://crates.io/api/v1/crates/futures-core/0.3.12/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "futures-core-0.3.10", strip_prefix = "futures-core-0.3.12",
build_file = Label("//rules/rust/remote:BUILD.futures-core-0.3.10.bazel"), build_file = Label("//rules/rust/remote:BUILD.futures-core-0.3.12.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__futures_executor__0_3_10", name = "raze__futures_executor__0_3_12",
url = "https://crates.io/api/v1/crates/futures-executor/0.3.10/download", url = "https://crates.io/api/v1/crates/futures-executor/0.3.12/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "futures-executor-0.3.10", strip_prefix = "futures-executor-0.3.12",
build_file = Label("//rules/rust/remote:BUILD.futures-executor-0.3.10.bazel"), build_file = Label("//rules/rust/remote:BUILD.futures-executor-0.3.12.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__futures_io__0_3_10", name = "raze__futures_io__0_3_12",
url = "https://crates.io/api/v1/crates/futures-io/0.3.10/download", url = "https://crates.io/api/v1/crates/futures-io/0.3.12/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "futures-io-0.3.10", strip_prefix = "futures-io-0.3.12",
build_file = Label("//rules/rust/remote:BUILD.futures-io-0.3.10.bazel"), build_file = Label("//rules/rust/remote:BUILD.futures-io-0.3.12.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__futures_macro__0_3_10", name = "raze__futures_macro__0_3_12",
url = "https://crates.io/api/v1/crates/futures-macro/0.3.10/download", url = "https://crates.io/api/v1/crates/futures-macro/0.3.12/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "futures-macro-0.3.10", strip_prefix = "futures-macro-0.3.12",
build_file = Label("//rules/rust/remote:BUILD.futures-macro-0.3.10.bazel"), build_file = Label("//rules/rust/remote:BUILD.futures-macro-0.3.12.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__futures_sink__0_3_10", name = "raze__futures_sink__0_3_12",
url = "https://crates.io/api/v1/crates/futures-sink/0.3.10/download", url = "https://crates.io/api/v1/crates/futures-sink/0.3.12/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "futures-sink-0.3.10", strip_prefix = "futures-sink-0.3.12",
build_file = Label("//rules/rust/remote:BUILD.futures-sink-0.3.10.bazel"), build_file = Label("//rules/rust/remote:BUILD.futures-sink-0.3.12.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__futures_task__0_3_10", name = "raze__futures_task__0_3_12",
url = "https://crates.io/api/v1/crates/futures-task/0.3.10/download", url = "https://crates.io/api/v1/crates/futures-task/0.3.12/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "futures-task-0.3.10", strip_prefix = "futures-task-0.3.12",
build_file = Label("//rules/rust/remote:BUILD.futures-task-0.3.10.bazel"), build_file = Label("//rules/rust/remote:BUILD.futures-task-0.3.12.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__futures_util__0_3_10", name = "raze__futures_util__0_3_12",
url = "https://crates.io/api/v1/crates/futures-util/0.3.10/download", url = "https://crates.io/api/v1/crates/futures-util/0.3.12/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "futures-util-0.3.10", strip_prefix = "futures-util-0.3.12",
build_file = Label("//rules/rust/remote:BUILD.futures-util-0.3.10.bazel"), build_file = Label("//rules/rust/remote:BUILD.futures-util-0.3.12.bazel"),
) )
maybe( maybe(
@ -1219,11 +1219,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__getrandom__0_2_1", name = "raze__getrandom__0_2_2",
url = "https://crates.io/api/v1/crates/getrandom/0.2.1/download", url = "https://crates.io/api/v1/crates/getrandom/0.2.2/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "getrandom-0.2.1", strip_prefix = "getrandom-0.2.2",
build_file = Label("//rules/rust/remote:BUILD.getrandom-0.2.1.bazel"), build_file = Label("//rules/rust/remote:BUILD.getrandom-0.2.2.bazel"),
) )
maybe( maybe(
@ -1264,11 +1264,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__half__1_6_0", name = "raze__half__1_7_1",
url = "https://crates.io/api/v1/crates/half/1.6.0/download", url = "https://crates.io/api/v1/crates/half/1.7.1/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "half-1.6.0", strip_prefix = "half-1.7.1",
build_file = Label("//rules/rust/remote:BUILD.half-1.6.0.bazel"), build_file = Label("//rules/rust/remote:BUILD.half-1.7.1.bazel"),
) )
maybe( maybe(
@ -1291,11 +1291,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__hermit_abi__0_1_17", name = "raze__hermit_abi__0_1_18",
url = "https://crates.io/api/v1/crates/hermit-abi/0.1.17/download", url = "https://crates.io/api/v1/crates/hermit-abi/0.1.18/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "hermit-abi-0.1.17", strip_prefix = "hermit-abi-0.1.18",
build_file = Label("//rules/rust/remote:BUILD.hermit-abi-0.1.17.bazel"), build_file = Label("//rules/rust/remote:BUILD.hermit-abi-0.1.18.bazel"),
) )
maybe( maybe(
@ -1345,11 +1345,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__httparse__1_3_4", name = "raze__httparse__1_3_5",
url = "https://crates.io/api/v1/crates/httparse/1.3.4/download", url = "https://crates.io/api/v1/crates/httparse/1.3.5/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "httparse-1.3.4", strip_prefix = "httparse-1.3.5",
build_file = Label("//rules/rust/remote:BUILD.httparse-1.3.4.bazel"), build_file = Label("//rules/rust/remote:BUILD.httparse-1.3.5.bazel"),
) )
maybe( maybe(
@ -1433,6 +1433,15 @@ def raze_fetch_remote_crates():
build_file = Label("//rules/rust/remote:BUILD.ipconfig-0.2.2.bazel"), build_file = Label("//rules/rust/remote:BUILD.ipconfig-0.2.2.bazel"),
) )
maybe(
http_archive,
name = "raze__itertools__0_10_0",
url = "https://crates.io/api/v1/crates/itertools/0.10.0/download",
type = "tar.gz",
strip_prefix = "itertools-0.10.0",
build_file = Label("//rules/rust/remote:BUILD.itertools-0.10.0.bazel"),
)
maybe( maybe(
http_archive, http_archive,
name = "raze__itertools__0_9_0", name = "raze__itertools__0_9_0",
@ -1453,11 +1462,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__js_sys__0_3_46", name = "raze__js_sys__0_3_47",
url = "https://crates.io/api/v1/crates/js-sys/0.3.46/download", url = "https://crates.io/api/v1/crates/js-sys/0.3.47/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "js-sys-0.3.46", strip_prefix = "js-sys-0.3.47",
build_file = Label("//rules/rust/remote:BUILD.js-sys-0.3.46.bazel"), build_file = Label("//rules/rust/remote:BUILD.js-sys-0.3.47.bazel"),
) )
maybe( maybe(
@ -1507,11 +1516,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__libc__0_2_82", name = "raze__libc__0_2_85",
url = "https://crates.io/api/v1/crates/libc/0.2.82/download", url = "https://crates.io/api/v1/crates/libc/0.2.85/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "libc-0.2.82", strip_prefix = "libc-0.2.85",
build_file = Label("//rules/rust/remote:BUILD.libc-0.2.82.bazel"), build_file = Label("//rules/rust/remote:BUILD.libc-0.2.85.bazel"),
) )
maybe( maybe(
@ -1543,11 +1552,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__log__0_4_13", name = "raze__log__0_4_14",
url = "https://crates.io/api/v1/crates/log/0.4.13/download", url = "https://crates.io/api/v1/crates/log/0.4.14/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "log-0.4.13", strip_prefix = "log-0.4.14",
build_file = Label("//rules/rust/remote:BUILD.log-0.4.13.bazel"), build_file = Label("//rules/rust/remote:BUILD.log-0.4.14.bazel"),
) )
maybe( maybe(
@ -1579,11 +1588,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__lru__0_6_3", name = "raze__lru__0_6_4",
url = "https://crates.io/api/v1/crates/lru/0.6.3/download", url = "https://crates.io/api/v1/crates/lru/0.6.4/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "lru-0.6.3", strip_prefix = "lru-0.6.4",
build_file = Label("//rules/rust/remote:BUILD.lru-0.6.3.bazel"), build_file = Label("//rules/rust/remote:BUILD.lru-0.6.4.bazel"),
) )
maybe( maybe(
@ -1858,11 +1867,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__object__0_22_0", name = "raze__object__0_23_0",
url = "https://crates.io/api/v1/crates/object/0.22.0/download", url = "https://crates.io/api/v1/crates/object/0.23.0/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "object-0.22.0", strip_prefix = "object-0.23.0",
build_file = Label("//rules/rust/remote:BUILD.object-0.22.0.bazel"), build_file = Label("//rules/rust/remote:BUILD.object-0.23.0.bazel"),
) )
maybe( maybe(
@ -1975,11 +1984,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__pin_project__1_0_4", name = "raze__pin_project__1_0_5",
url = "https://crates.io/api/v1/crates/pin-project/1.0.4/download", url = "https://crates.io/api/v1/crates/pin-project/1.0.5/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "pin-project-1.0.4", strip_prefix = "pin-project-1.0.5",
build_file = Label("//rules/rust/remote:BUILD.pin-project-1.0.4.bazel"), build_file = Label("//rules/rust/remote:BUILD.pin-project-1.0.5.bazel"),
) )
maybe( maybe(
@ -1993,11 +2002,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__pin_project_internal__1_0_4", name = "raze__pin_project_internal__1_0_5",
url = "https://crates.io/api/v1/crates/pin-project-internal/1.0.4/download", url = "https://crates.io/api/v1/crates/pin-project-internal/1.0.5/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "pin-project-internal-1.0.4", strip_prefix = "pin-project-internal-1.0.5",
build_file = Label("//rules/rust/remote:BUILD.pin-project-internal-1.0.4.bazel"), build_file = Label("//rules/rust/remote:BUILD.pin-project-internal-1.0.5.bazel"),
) )
maybe( maybe(
@ -2029,11 +2038,29 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__plotters__0_2_15", name = "raze__plotters__0_3_0",
url = "https://crates.io/api/v1/crates/plotters/0.2.15/download", url = "https://crates.io/api/v1/crates/plotters/0.3.0/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "plotters-0.2.15", strip_prefix = "plotters-0.3.0",
build_file = Label("//rules/rust/remote:BUILD.plotters-0.2.15.bazel"), build_file = Label("//rules/rust/remote:BUILD.plotters-0.3.0.bazel"),
)
maybe(
http_archive,
name = "raze__plotters_backend__0_3_0",
url = "https://crates.io/api/v1/crates/plotters-backend/0.3.0/download",
type = "tar.gz",
strip_prefix = "plotters-backend-0.3.0",
build_file = Label("//rules/rust/remote:BUILD.plotters-backend-0.3.0.bazel"),
)
maybe(
http_archive,
name = "raze__plotters_svg__0_3_0",
url = "https://crates.io/api/v1/crates/plotters-svg/0.3.0/download",
type = "tar.gz",
strip_prefix = "plotters-svg-0.3.0",
build_file = Label("//rules/rust/remote:BUILD.plotters-svg-0.3.0.bazel"),
) )
maybe( maybe(
@ -2218,11 +2245,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__rand__0_8_2", name = "raze__rand__0_8_3",
url = "https://crates.io/api/v1/crates/rand/0.8.2/download", url = "https://crates.io/api/v1/crates/rand/0.8.3/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "rand-0.8.2", strip_prefix = "rand-0.8.3",
build_file = Label("//rules/rust/remote:BUILD.rand-0.8.2.bazel"), build_file = Label("//rules/rust/remote:BUILD.rand-0.8.3.bazel"),
) )
maybe( maybe(
@ -2560,11 +2587,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__serde__1_0_119", name = "raze__serde__1_0_123",
url = "https://crates.io/api/v1/crates/serde/1.0.119/download", url = "https://crates.io/api/v1/crates/serde/1.0.123/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "serde-1.0.119", strip_prefix = "serde-1.0.123",
build_file = Label("//rules/rust/remote:BUILD.serde-1.0.119.bazel"), build_file = Label("//rules/rust/remote:BUILD.serde-1.0.123.bazel"),
) )
maybe( maybe(
@ -2596,11 +2623,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__serde_derive__1_0_119", name = "raze__serde_derive__1_0_123",
url = "https://crates.io/api/v1/crates/serde_derive/1.0.119/download", url = "https://crates.io/api/v1/crates/serde_derive/1.0.123/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "serde_derive-1.0.119", strip_prefix = "serde_derive-1.0.123",
build_file = Label("//rules/rust/remote:BUILD.serde_derive-1.0.119.bazel"), build_file = Label("//rules/rust/remote:BUILD.serde_derive-1.0.123.bazel"),
) )
maybe( maybe(
@ -2641,20 +2668,20 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__serde_yaml__0_8_15", name = "raze__serde_yaml__0_8_16",
url = "https://crates.io/api/v1/crates/serde_yaml/0.8.15/download", url = "https://crates.io/api/v1/crates/serde_yaml/0.8.16/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "serde_yaml-0.8.15", strip_prefix = "serde_yaml-0.8.16",
build_file = Label("//rules/rust/remote:BUILD.serde_yaml-0.8.15.bazel"), build_file = Label("//rules/rust/remote:BUILD.serde_yaml-0.8.16.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__sha_1__0_9_2", name = "raze__sha_1__0_9_3",
url = "https://crates.io/api/v1/crates/sha-1/0.9.2/download", url = "https://crates.io/api/v1/crates/sha-1/0.9.3/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "sha-1-0.9.2", strip_prefix = "sha-1-0.9.3",
build_file = Label("//rules/rust/remote:BUILD.sha-1-0.9.2.bazel"), build_file = Label("//rules/rust/remote:BUILD.sha-1-0.9.3.bazel"),
) )
maybe( maybe(
@ -2668,11 +2695,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__sha2__0_9_2", name = "raze__sha2__0_9_3",
url = "https://crates.io/api/v1/crates/sha2/0.9.2/download", url = "https://crates.io/api/v1/crates/sha2/0.9.3/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "sha2-0.9.2", strip_prefix = "sha2-0.9.3",
build_file = Label("//rules/rust/remote:BUILD.sha2-0.9.2.bazel"), build_file = Label("//rules/rust/remote:BUILD.sha2-0.9.3.bazel"),
) )
maybe( maybe(
@ -2686,11 +2713,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__signal_hook__0_3_3", name = "raze__signal_hook__0_3_4",
url = "https://crates.io/api/v1/crates/signal-hook/0.3.3/download", url = "https://crates.io/api/v1/crates/signal-hook/0.3.4/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "signal-hook-0.3.3", strip_prefix = "signal-hook-0.3.4",
build_file = Label("//rules/rust/remote:BUILD.signal-hook-0.3.3.bazel"), build_file = Label("//rules/rust/remote:BUILD.signal-hook-0.3.4.bazel"),
) )
maybe( maybe(
@ -2794,11 +2821,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__smawk__0_3_0", name = "raze__smawk__0_3_1",
url = "https://crates.io/api/v1/crates/smawk/0.3.0/download", url = "https://crates.io/api/v1/crates/smawk/0.3.1/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "smawk-0.3.0", strip_prefix = "smawk-0.3.1",
build_file = Label("//rules/rust/remote:BUILD.smawk-0.3.0.bazel"), build_file = Label("//rules/rust/remote:BUILD.smawk-0.3.1.bazel"),
) )
maybe( maybe(
@ -2929,11 +2956,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__syn__1_0_58", name = "raze__syn__1_0_60",
url = "https://crates.io/api/v1/crates/syn/1.0.58/download", url = "https://crates.io/api/v1/crates/syn/1.0.60/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "syn-1.0.58", strip_prefix = "syn-1.0.60",
build_file = Label("//rules/rust/remote:BUILD.syn-1.0.58.bazel"), build_file = Label("//rules/rust/remote:BUILD.syn-1.0.60.bazel"),
) )
maybe( maybe(
@ -2965,11 +2992,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__tar__0_4_30", name = "raze__tar__0_4_32",
url = "https://crates.io/api/v1/crates/tar/0.4.30/download", url = "https://crates.io/api/v1/crates/tar/0.4.32/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "tar-0.4.30", strip_prefix = "tar-0.4.32",
build_file = Label("//rules/rust/remote:BUILD.tar-0.4.30.bazel"), build_file = Label("//rules/rust/remote:BUILD.tar-0.4.32.bazel"),
) )
maybe( maybe(
@ -3055,11 +3082,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__thread_local__1_1_0", name = "raze__thread_local__1_1_3",
url = "https://crates.io/api/v1/crates/thread_local/1.1.0/download", url = "https://crates.io/api/v1/crates/thread_local/1.1.3/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "thread_local-1.1.0", strip_prefix = "thread_local-1.1.3",
build_file = Label("//rules/rust/remote:BUILD.thread_local-1.1.0.bazel"), build_file = Label("//rules/rust/remote:BUILD.thread_local-1.1.3.bazel"),
) )
maybe( maybe(
@ -3082,11 +3109,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__time__0_2_24", name = "raze__time__0_2_25",
url = "https://crates.io/api/v1/crates/time/0.2.24/download", url = "https://crates.io/api/v1/crates/time/0.2.25/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "time-0.2.24", strip_prefix = "time-0.2.25",
build_file = Label("//rules/rust/remote:BUILD.time-0.2.24.bazel"), build_file = Label("//rules/rust/remote:BUILD.time-0.2.25.bazel"),
) )
maybe( maybe(
@ -3118,11 +3145,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__tinyvec__1_1_0", name = "raze__tinyvec__1_1_1",
url = "https://crates.io/api/v1/crates/tinyvec/1.1.0/download", url = "https://crates.io/api/v1/crates/tinyvec/1.1.1/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "tinyvec-1.1.0", strip_prefix = "tinyvec-1.1.1",
build_file = Label("//rules/rust/remote:BUILD.tinyvec-1.1.0.bazel"), build_file = Label("//rules/rust/remote:BUILD.tinyvec-1.1.1.bazel"),
) )
maybe( maybe(
@ -3154,20 +3181,20 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__tokio__0_2_24", name = "raze__tokio__0_2_25",
url = "https://crates.io/api/v1/crates/tokio/0.2.24/download", url = "https://crates.io/api/v1/crates/tokio/0.2.25/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "tokio-0.2.24", strip_prefix = "tokio-0.2.25",
build_file = Label("//rules/rust/remote:BUILD.tokio-0.2.24.bazel"), build_file = Label("//rules/rust/remote:BUILD.tokio-0.2.25.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__tokio__1_0_1", name = "raze__tokio__1_1_1",
url = "https://crates.io/api/v1/crates/tokio/1.0.1/download", url = "https://crates.io/api/v1/crates/tokio/1.1.1/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "tokio-1.0.1", strip_prefix = "tokio-1.1.1",
build_file = Label("//rules/rust/remote:BUILD.tokio-1.0.1.bazel"), build_file = Label("//rules/rust/remote:BUILD.tokio-1.1.1.bazel"),
) )
maybe( maybe(
@ -3215,15 +3242,6 @@ def raze_fetch_remote_crates():
build_file = Label("//rules/rust/remote:BUILD.tokio-postgres-0.7.0.bazel"), build_file = Label("//rules/rust/remote:BUILD.tokio-postgres-0.7.0.bazel"),
) )
maybe(
http_archive,
name = "raze__tokio_stream__0_1_2",
url = "https://crates.io/api/v1/crates/tokio-stream/0.1.2/download",
type = "tar.gz",
strip_prefix = "tokio-stream-0.1.2",
build_file = Label("//rules/rust/remote:BUILD.tokio-stream-0.1.2.bazel"),
)
maybe( maybe(
http_archive, http_archive,
name = "raze__tokio_util__0_2_0", name = "raze__tokio_util__0_2_0",
@ -3244,11 +3262,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__tokio_util__0_6_1", name = "raze__tokio_util__0_6_3",
url = "https://crates.io/api/v1/crates/tokio-util/0.6.1/download", url = "https://crates.io/api/v1/crates/tokio-util/0.6.3/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "tokio-util-0.6.1", strip_prefix = "tokio-util-0.6.3",
build_file = Label("//rules/rust/remote:BUILD.tokio-util-0.6.1.bazel"), build_file = Label("//rules/rust/remote:BUILD.tokio-util-0.6.3.bazel"),
) )
maybe( maybe(
@ -3478,11 +3496,11 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__wasi__0_10_1_wasi_snapshot_preview1", name = "raze__wasi__0_10_2_wasi_snapshot_preview1",
url = "https://crates.io/api/v1/crates/wasi/0.10.1+wasi-snapshot-preview1/download", url = "https://crates.io/api/v1/crates/wasi/0.10.2+wasi-snapshot-preview1/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "wasi-0.10.1+wasi-snapshot-preview1", strip_prefix = "wasi-0.10.2+wasi-snapshot-preview1",
build_file = Label("//rules/rust/remote:BUILD.wasi-0.10.1+wasi-snapshot-preview1.bazel"), build_file = Label("//rules/rust/remote:BUILD.wasi-0.10.2+wasi-snapshot-preview1.bazel"),
) )
maybe( maybe(
@ -3496,56 +3514,56 @@ def raze_fetch_remote_crates():
maybe( maybe(
http_archive, http_archive,
name = "raze__wasm_bindgen__0_2_69", name = "raze__wasm_bindgen__0_2_70",
url = "https://crates.io/api/v1/crates/wasm-bindgen/0.2.69/download", url = "https://crates.io/api/v1/crates/wasm-bindgen/0.2.70/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "wasm-bindgen-0.2.69", strip_prefix = "wasm-bindgen-0.2.70",
build_file = Label("//rules/rust/remote:BUILD.wasm-bindgen-0.2.69.bazel"), build_file = Label("//rules/rust/remote:BUILD.wasm-bindgen-0.2.70.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__wasm_bindgen_backend__0_2_69", name = "raze__wasm_bindgen_backend__0_2_70",
url = "https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.69/download", url = "https://crates.io/api/v1/crates/wasm-bindgen-backend/0.2.70/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "wasm-bindgen-backend-0.2.69", strip_prefix = "wasm-bindgen-backend-0.2.70",
build_file = Label("//rules/rust/remote:BUILD.wasm-bindgen-backend-0.2.69.bazel"), build_file = Label("//rules/rust/remote:BUILD.wasm-bindgen-backend-0.2.70.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__wasm_bindgen_macro__0_2_69", name = "raze__wasm_bindgen_macro__0_2_70",
url = "https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.69/download", url = "https://crates.io/api/v1/crates/wasm-bindgen-macro/0.2.70/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "wasm-bindgen-macro-0.2.69", strip_prefix = "wasm-bindgen-macro-0.2.70",
build_file = Label("//rules/rust/remote:BUILD.wasm-bindgen-macro-0.2.69.bazel"), build_file = Label("//rules/rust/remote:BUILD.wasm-bindgen-macro-0.2.70.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__wasm_bindgen_macro_support__0_2_69", name = "raze__wasm_bindgen_macro_support__0_2_70",
url = "https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.69/download", url = "https://crates.io/api/v1/crates/wasm-bindgen-macro-support/0.2.70/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "wasm-bindgen-macro-support-0.2.69", strip_prefix = "wasm-bindgen-macro-support-0.2.70",
build_file = Label("//rules/rust/remote:BUILD.wasm-bindgen-macro-support-0.2.69.bazel"), build_file = Label("//rules/rust/remote:BUILD.wasm-bindgen-macro-support-0.2.70.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__wasm_bindgen_shared__0_2_69", name = "raze__wasm_bindgen_shared__0_2_70",
url = "https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.69/download", url = "https://crates.io/api/v1/crates/wasm-bindgen-shared/0.2.70/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "wasm-bindgen-shared-0.2.69", strip_prefix = "wasm-bindgen-shared-0.2.70",
build_file = Label("//rules/rust/remote:BUILD.wasm-bindgen-shared-0.2.69.bazel"), build_file = Label("//rules/rust/remote:BUILD.wasm-bindgen-shared-0.2.70.bazel"),
) )
maybe( maybe(
http_archive, http_archive,
name = "raze__web_sys__0_3_46", name = "raze__web_sys__0_3_47",
url = "https://crates.io/api/v1/crates/web-sys/0.3.46/download", url = "https://crates.io/api/v1/crates/web-sys/0.3.47/download",
type = "tar.gz", type = "tar.gz",
strip_prefix = "web-sys-0.3.46", strip_prefix = "web-sys-0.3.47",
build_file = Label("//rules/rust/remote:BUILD.web-sys-0.3.46.bazel"), build_file = Label("//rules/rust/remote:BUILD.web-sys-0.3.47.bazel"),
) )
maybe( maybe(

View File

@ -67,14 +67,14 @@ rust_library(
"@raze__bitflags__1_2_1//:bitflags", "@raze__bitflags__1_2_1//:bitflags",
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__crossbeam_channel__0_4_4//:crossbeam_channel", "@raze__crossbeam_channel__0_4_4//:crossbeam_channel",
"@raze__futures_channel__0_3_10//:futures_channel", "@raze__futures_channel__0_3_12//:futures_channel",
"@raze__futures_util__0_3_10//:futures_util", "@raze__futures_util__0_3_12//:futures_util",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__once_cell__1_5_2//:once_cell", "@raze__once_cell__1_5_2//:once_cell",
"@raze__parking_lot__0_11_1//:parking_lot", "@raze__parking_lot__0_11_1//:parking_lot",
"@raze__pin_project__0_4_27//:pin_project", "@raze__pin_project__0_4_27//:pin_project",
"@raze__smallvec__1_6_1//:smallvec", "@raze__smallvec__1_6_1//:smallvec",
"@raze__tokio__0_2_24//:tokio", "@raze__tokio__0_2_25//:tokio",
"@raze__tokio_util__0_3_1//:tokio_util", "@raze__tokio_util__0_3_1//:tokio_util",
"@raze__trust_dns_proto__0_19_6//:trust_dns_proto", "@raze__trust_dns_proto__0_19_6//:trust_dns_proto",
"@raze__trust_dns_resolver__0_19_6//:trust_dns_resolver", "@raze__trust_dns_resolver__0_19_6//:trust_dns_resolver",

View File

@ -51,10 +51,10 @@ rust_library(
deps = [ deps = [
"@raze__bitflags__1_2_1//:bitflags", "@raze__bitflags__1_2_1//:bitflags",
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__futures_core__0_3_10//:futures_core", "@raze__futures_core__0_3_12//:futures_core",
"@raze__futures_sink__0_3_10//:futures_sink", "@raze__futures_sink__0_3_12//:futures_sink",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__tokio__0_2_24//:tokio", "@raze__tokio__0_2_25//:tokio",
"@raze__tokio_util__0_2_0//:tokio_util", "@raze__tokio_util__0_2_0//:tokio_util",
], ],
) )

View File

@ -51,11 +51,11 @@ rust_library(
deps = [ deps = [
"@raze__bitflags__1_2_1//:bitflags", "@raze__bitflags__1_2_1//:bitflags",
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__futures_core__0_3_10//:futures_core", "@raze__futures_core__0_3_12//:futures_core",
"@raze__futures_sink__0_3_10//:futures_sink", "@raze__futures_sink__0_3_12//:futures_sink",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__pin_project__0_4_27//:pin_project", "@raze__pin_project__0_4_27//:pin_project",
"@raze__tokio__0_2_24//:tokio", "@raze__tokio__0_2_25//:tokio",
"@raze__tokio_util__0_3_1//:tokio_util", "@raze__tokio_util__0_3_1//:tokio_util",
], ],
) )

View File

@ -60,9 +60,9 @@ rust_library(
"@raze__actix_service__1_0_6//:actix_service", "@raze__actix_service__1_0_6//:actix_service",
"@raze__actix_utils__2_0_0//:actix_utils", "@raze__actix_utils__2_0_0//:actix_utils",
"@raze__either__1_6_1//:either", "@raze__either__1_6_1//:either",
"@raze__futures_util__0_3_10//:futures_util", "@raze__futures_util__0_3_12//:futures_util",
"@raze__http__0_2_3//:http", "@raze__http__0_2_3//:http",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__trust_dns_proto__0_19_6//:trust_dns_proto", "@raze__trust_dns_proto__0_19_6//:trust_dns_proto",
"@raze__trust_dns_resolver__0_19_6//:trust_dns_resolver", "@raze__trust_dns_resolver__0_19_6//:trust_dns_resolver",
], ],

View File

@ -55,10 +55,10 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__actix_web__3_3_2//:actix_web", "@raze__actix_web__3_3_2//:actix_web",
"@raze__futures_util__0_3_10//:futures_util", "@raze__futures_util__0_3_12//:futures_util",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__once_cell__1_5_2//:once_cell", "@raze__once_cell__1_5_2//:once_cell",
"@raze__tinyvec__1_1_0//:tinyvec", "@raze__tinyvec__1_1_1//:tinyvec",
], ],
) )

View File

@ -77,30 +77,30 @@ rust_library(
"@raze__cookie__0_14_3//:cookie", "@raze__cookie__0_14_3//:cookie",
"@raze__copyless__0_1_5//:copyless", "@raze__copyless__0_1_5//:copyless",
"@raze__either__1_6_1//:either", "@raze__either__1_6_1//:either",
"@raze__encoding_rs__0_8_26//:encoding_rs", "@raze__encoding_rs__0_8_28//:encoding_rs",
"@raze__futures_channel__0_3_10//:futures_channel", "@raze__futures_channel__0_3_12//:futures_channel",
"@raze__futures_core__0_3_10//:futures_core", "@raze__futures_core__0_3_12//:futures_core",
"@raze__futures_util__0_3_10//:futures_util", "@raze__futures_util__0_3_12//:futures_util",
"@raze__fxhash__0_2_1//:fxhash", "@raze__fxhash__0_2_1//:fxhash",
"@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__httparse__1_3_4//:httparse", "@raze__httparse__1_3_5//:httparse",
"@raze__indexmap__1_6_1//:indexmap", "@raze__indexmap__1_6_1//:indexmap",
"@raze__itoa__0_4_7//:itoa", "@raze__itoa__0_4_7//:itoa",
"@raze__language_tags__0_2_2//:language_tags", "@raze__language_tags__0_2_2//:language_tags",
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",
"@raze__log__0_4_13//: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__1_0_4//:pin_project", "@raze__pin_project__1_0_5//:pin_project",
"@raze__rand__0_7_3//:rand", "@raze__rand__0_7_3//:rand",
"@raze__regex__1_4_3//:regex", "@raze__regex__1_4_3//:regex",
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
"@raze__serde_json__1_0_61//:serde_json", "@raze__serde_json__1_0_61//:serde_json",
"@raze__serde_urlencoded__0_7_0//:serde_urlencoded", "@raze__serde_urlencoded__0_7_0//:serde_urlencoded",
"@raze__sha_1__0_9_2//:sha_1", "@raze__sha_1__0_9_3//:sha_1",
"@raze__slab__0_4_2//:slab", "@raze__slab__0_4_2//:slab",
"@raze__time__0_2_24//:time", "@raze__time__0_2_25//:time",
], ],
) )

View File

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

View File

@ -53,8 +53,8 @@ rust_library(
deps = [ deps = [
"@raze__bytestring__1_0_0//:bytestring", "@raze__bytestring__1_0_0//:bytestring",
"@raze__http__0_2_3//:http", "@raze__http__0_2_3//:http",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__regex__1_4_3//:regex", "@raze__regex__1_4_3//:regex",
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
], ],
) )

View File

@ -54,10 +54,10 @@ rust_library(
deps = [ deps = [
"@raze__actix_threadpool__0_3_3//:actix_threadpool", "@raze__actix_threadpool__0_3_3//:actix_threadpool",
"@raze__copyless__0_1_5//:copyless", "@raze__copyless__0_1_5//:copyless",
"@raze__futures_channel__0_3_10//:futures_channel", "@raze__futures_channel__0_3_12//:futures_channel",
"@raze__futures_util__0_3_10//:futures_util", "@raze__futures_util__0_3_12//:futures_util",
"@raze__smallvec__1_6_1//:smallvec", "@raze__smallvec__1_6_1//:smallvec",
"@raze__tokio__0_2_24//:tokio", "@raze__tokio__0_2_25//:tokio",
], ],
) )

View File

@ -54,9 +54,9 @@ rust_library(
"@raze__actix_rt__1_1_1//:actix_rt", "@raze__actix_rt__1_1_1//:actix_rt",
"@raze__actix_service__1_0_6//:actix_service", "@raze__actix_service__1_0_6//:actix_service",
"@raze__actix_utils__2_0_0//:actix_utils", "@raze__actix_utils__2_0_0//:actix_utils",
"@raze__futures_channel__0_3_10//:futures_channel", "@raze__futures_channel__0_3_12//:futures_channel",
"@raze__futures_util__0_3_10//:futures_util", "@raze__futures_util__0_3_12//:futures_util",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__mio__0_6_23//:mio", "@raze__mio__0_6_23//:mio",
"@raze__mio_uds__0_6_8//:mio_uds", "@raze__mio_uds__0_6_8//:mio_uds",
"@raze__num_cpus__1_13_0//:num_cpus", "@raze__num_cpus__1_13_0//:num_cpus",

View File

@ -53,7 +53,7 @@ rust_library(
version = "1.0.6", version = "1.0.6",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures_util__0_3_10//:futures_util", "@raze__futures_util__0_3_12//:futures_util",
"@raze__pin_project__0_4_27//:pin_project", "@raze__pin_project__0_4_27//:pin_project",
], ],
) )

View File

@ -55,7 +55,7 @@ rust_library(
"@raze__actix_rt__1_1_1//:actix_rt", "@raze__actix_rt__1_1_1//:actix_rt",
"@raze__actix_server__1_0_4//:actix_server", "@raze__actix_server__1_0_4//:actix_server",
"@raze__actix_service__1_0_6//:actix_service", "@raze__actix_service__1_0_6//:actix_service",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__socket2__0_3_19//:socket2", "@raze__socket2__0_3_19//:socket2",
], ],
) )

View File

@ -52,9 +52,9 @@ rust_library(
version = "0.3.3", version = "0.3.3",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures_channel__0_3_10//:futures_channel", "@raze__futures_channel__0_3_12//:futures_channel",
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__num_cpus__1_13_0//:num_cpus", "@raze__num_cpus__1_13_0//:num_cpus",
"@raze__parking_lot__0_11_1//:parking_lot", "@raze__parking_lot__0_11_1//:parking_lot",
"@raze__threadpool__1_8_1//:threadpool", "@raze__threadpool__1_8_1//:threadpool",

View File

@ -53,6 +53,6 @@ rust_library(
"@raze__actix_codec__0_3_0//:actix_codec", "@raze__actix_codec__0_3_0//:actix_codec",
"@raze__actix_service__1_0_6//:actix_service", "@raze__actix_service__1_0_6//:actix_service",
"@raze__actix_utils__2_0_0//:actix_utils", "@raze__actix_utils__2_0_0//:actix_utils",
"@raze__futures_util__0_3_10//:futures_util", "@raze__futures_util__0_3_12//:futures_util",
], ],
) )

View File

@ -55,8 +55,8 @@ rust_library(
"@raze__bitflags__1_2_1//:bitflags", "@raze__bitflags__1_2_1//:bitflags",
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__either__1_6_1//:either", "@raze__either__1_6_1//:either",
"@raze__futures__0_3_10//:futures", "@raze__futures__0_3_12//:futures",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__pin_project__0_4_27//:pin_project", "@raze__pin_project__0_4_27//:pin_project",
"@raze__slab__0_4_2//:slab", "@raze__slab__0_4_2//:slab",
], ],

View File

@ -55,10 +55,10 @@ rust_library(
"@raze__bitflags__1_2_1//:bitflags", "@raze__bitflags__1_2_1//:bitflags",
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__either__1_6_1//:either", "@raze__either__1_6_1//:either",
"@raze__futures_channel__0_3_10//:futures_channel", "@raze__futures_channel__0_3_12//:futures_channel",
"@raze__futures_sink__0_3_10//:futures_sink", "@raze__futures_sink__0_3_12//:futures_sink",
"@raze__futures_util__0_3_10//:futures_util", "@raze__futures_util__0_3_12//:futures_util",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__pin_project__0_4_27//:pin_project", "@raze__pin_project__0_4_27//:pin_project",
"@raze__slab__0_4_2//:slab", "@raze__slab__0_4_2//:slab",
], ],

View File

@ -78,21 +78,21 @@ rust_library(
"@raze__actix_utils__2_0_0//:actix_utils", "@raze__actix_utils__2_0_0//:actix_utils",
"@raze__awc__2_0_3//:awc", "@raze__awc__2_0_3//:awc",
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__encoding_rs__0_8_26//:encoding_rs", "@raze__encoding_rs__0_8_28//:encoding_rs",
"@raze__futures_channel__0_3_10//:futures_channel", "@raze__futures_channel__0_3_12//:futures_channel",
"@raze__futures_core__0_3_10//:futures_core", "@raze__futures_core__0_3_12//:futures_core",
"@raze__futures_util__0_3_10//:futures_util", "@raze__futures_util__0_3_12//:futures_util",
"@raze__fxhash__0_2_1//:fxhash", "@raze__fxhash__0_2_1//:fxhash",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__mime__0_3_16//:mime", "@raze__mime__0_3_16//:mime",
"@raze__pin_project__1_0_4//:pin_project", "@raze__pin_project__1_0_5//:pin_project",
"@raze__regex__1_4_3//:regex", "@raze__regex__1_4_3//:regex",
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
"@raze__serde_json__1_0_61//:serde_json", "@raze__serde_json__1_0_61//:serde_json",
"@raze__serde_urlencoded__0_7_0//:serde_urlencoded", "@raze__serde_urlencoded__0_7_0//:serde_urlencoded",
"@raze__socket2__0_3_19//:socket2", "@raze__socket2__0_3_19//:socket2",
"@raze__time__0_2_24//:time", "@raze__time__0_2_25//:time",
"@raze__tinyvec__1_1_0//:tinyvec", "@raze__tinyvec__1_1_1//:tinyvec",
"@raze__url__2_2_0//:url", "@raze__url__2_2_0//:url",
], ],
) )

View File

@ -51,7 +51,7 @@ rust_library(
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_8//:quote",
"@raze__syn__1_0_58//:syn", "@raze__syn__1_0_60//:syn",
], ],
) )

View File

@ -51,7 +51,7 @@ rust_library(
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_8//:quote",
"@raze__syn__1_0_58//:syn", "@raze__syn__1_0_60//:syn",
], ],
) )

View File

@ -51,7 +51,7 @@ rust_library(
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_8//:quote",
"@raze__syn__1_0_58//:syn", "@raze__syn__1_0_60//:syn",
], ],
) )

View File

@ -59,7 +59,7 @@ rust_library(
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@ -59,12 +59,12 @@ rust_library(
"@raze__base64__0_13_0//:base64", "@raze__base64__0_13_0//:base64",
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__cfg_if__1_0_0//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__futures_core__0_3_10//:futures_core", "@raze__futures_core__0_3_12//:futures_core",
"@raze__log__0_4_13//: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__rand__0_7_3//:rand", "@raze__rand__0_7_3//:rand",
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
"@raze__serde_json__1_0_61//:serde_json", "@raze__serde_json__1_0_61//:serde_json",
"@raze__serde_urlencoded__0_7_0//:serde_urlencoded", "@raze__serde_urlencoded__0_7_0//:serde_urlencoded",
], ],

View File

@ -58,14 +58,14 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.55", version = "0.3.56",
# buildifier: leave-alone # buildifier: leave-alone
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_82//:libc", "@raze__libc__0_2_85//:libc",
"@raze__miniz_oxide__0_4_3//:miniz_oxide", "@raze__miniz_oxide__0_4_3//:miniz_oxide",
"@raze__object__0_22_0//:object", "@raze__object__0_23_0//:object",
"@raze__rustc_demangle__0_1_18//:rustc_demangle", "@raze__rustc_demangle__0_1_18//:rustc_demangle",
], ],
) )

View File

@ -52,8 +52,8 @@ rust_library(
version = "0.4.2", version = "0.4.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures__0_3_10//:futures", "@raze__futures__0_3_12//:futures",
"@raze__tokio__0_2_24//:tokio", "@raze__tokio__0_2_25//:tokio",
], ],
) )

View File

@ -61,8 +61,8 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__bb8__0_4_2//:bb8", "@raze__bb8__0_4_2//:bb8",
"@raze__futures__0_3_10//:futures", "@raze__futures__0_3_12//:futures",
"@raze__tokio__0_2_24//:tokio", "@raze__tokio__0_2_25//:tokio",
"@raze__tokio_postgres__0_5_5//:tokio_postgres", "@raze__tokio_postgres__0_5_5//:tokio_postgres",
], ],
) )

View File

@ -51,7 +51,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__byteorder__1_4_2//:byteorder", "@raze__byteorder__1_4_2//:byteorder",
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
], ],
) )

View File

@ -76,6 +76,6 @@ rust_library(
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",
"@raze__memchr__2_3_4//:memchr", "@raze__memchr__2_3_4//:memchr",
"@raze__regex_automata__0_1_9//:regex_automata", "@raze__regex_automata__0_1_9//:regex_automata",
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
], ],
) )

View File

@ -49,7 +49,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "3.4.0", version = "3.6.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],
@ -57,8 +57,12 @@ rust_library(
# Unsupported target "alloc_fill" with type "test" omitted # Unsupported target "alloc_fill" with type "test" omitted
# Unsupported target "alloc_try_with" with type "test" omitted
# Unsupported target "alloc_with" with type "test" omitted # Unsupported target "alloc_with" with type "test" omitted
# Unsupported target "allocator_api" with type "test" omitted
# Unsupported target "quickchecks" with type "test" omitted # Unsupported target "quickchecks" with type "test" omitted
# Unsupported target "readme_up_to_date" with type "test" omitted # Unsupported target "readme_up_to_date" with type "test" omitted
@ -69,4 +73,8 @@ rust_library(
# Unsupported target "try_alloc" with type "test" omitted # Unsupported target "try_alloc" with type "test" omitted
# Unsupported target "try_alloc_try_with" with type "test" omitted
# Unsupported target "try_alloc_with" with type "test" omitted
# Unsupported target "vec" with type "test" omitted # Unsupported target "vec" with type "test" omitted

View File

@ -61,10 +61,10 @@ rust_library(
version = "0.4.19", version = "0.4.19",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//: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__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
"@raze__time__0_1_43//:time", "@raze__time__0_1_43//:time",
], ],
) )

View File

@ -62,7 +62,7 @@ rust_library(
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",
"@raze__nom__5_1_2//:nom", "@raze__nom__5_1_2//:nom",
"@raze__rust_ini__0_13_0//:rust_ini", "@raze__rust_ini__0_13_0//:rust_ini",
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
"@raze__serde_hjson__0_9_1//:serde_hjson", "@raze__serde_hjson__0_9_1//:serde_hjson",
"@raze__serde_json__1_0_61//:serde_json", "@raze__serde_json__1_0_61//:serde_json",
"@raze__toml__0_5_8//:toml", "@raze__toml__0_5_8//:toml",

View File

@ -84,6 +84,6 @@ rust_library(
deps = [ deps = [
":cookie_build_script", ":cookie_build_script",
"@raze__percent_encoding__2_1_0//:percent_encoding", "@raze__percent_encoding__2_1_0//:percent_encoding",
"@raze__time__0_2_24//:time", "@raze__time__0_2_25//:time",
], ],
) )

View File

@ -36,6 +36,7 @@ rust_library(
name = "criterion", name = "criterion",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
crate_features = [ crate_features = [
"cargo_bench_support",
"default", "default",
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
@ -43,7 +44,7 @@ rust_library(
data = [], data = [],
edition = "2018", edition = "2018",
proc_macro_deps = [ proc_macro_deps = [
"@raze__serde_derive__1_0_119//:serde_derive", "@raze__serde_derive__1_0_123//:serde_derive",
], ],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
@ -52,7 +53,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.3", version = "0.3.4",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__atty__0_2_14//:atty", "@raze__atty__0_2_14//:atty",
@ -60,14 +61,14 @@ rust_library(
"@raze__clap__2_33_3//:clap", "@raze__clap__2_33_3//:clap",
"@raze__criterion_plot__0_4_3//:criterion_plot", "@raze__criterion_plot__0_4_3//:criterion_plot",
"@raze__csv__1_1_5//:csv", "@raze__csv__1_1_5//:csv",
"@raze__itertools__0_9_0//:itertools", "@raze__itertools__0_10_0//:itertools",
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",
"@raze__num_traits__0_2_14//:num_traits", "@raze__num_traits__0_2_14//:num_traits",
"@raze__oorandom__11_1_3//:oorandom", "@raze__oorandom__11_1_3//:oorandom",
"@raze__plotters__0_2_15//:plotters", "@raze__plotters__0_3_0//:plotters",
"@raze__rayon__1_5_0//:rayon", "@raze__rayon__1_5_0//:rayon",
"@raze__regex__1_4_3//:regex", "@raze__regex__1_4_3//:regex",
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
"@raze__serde_cbor__0_11_1//:serde_cbor", "@raze__serde_cbor__0_11_1//:serde_cbor",
"@raze__serde_json__1_0_61//:serde_json", "@raze__serde_json__1_0_61//:serde_json",
"@raze__tinytemplate__1_2_0//:tinytemplate", "@raze__tinytemplate__1_2_0//:tinytemplate",

View File

@ -127,7 +127,7 @@ rust_library(
"@raze__csv_core__0_1_10//:csv_core", "@raze__csv_core__0_1_10//:csv_core",
"@raze__itoa__0_4_7//:itoa", "@raze__itoa__0_4_7//:itoa",
"@raze__ryu__1_0_5//:ryu", "@raze__ryu__1_0_5//:ryu",
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
], ],
) )

View File

@ -65,8 +65,8 @@ rust_library(
"@raze__config__0_10_1//:config", "@raze__config__0_10_1//:config",
"@raze__crossbeam_queue__0_2_3//:crossbeam_queue", "@raze__crossbeam_queue__0_2_3//:crossbeam_queue",
"@raze__num_cpus__1_13_0//:num_cpus", "@raze__num_cpus__1_13_0//:num_cpus",
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
"@raze__tokio__0_2_24//:tokio", "@raze__tokio__0_2_25//:tokio",
], ],
) )

View File

@ -61,10 +61,10 @@ rust_library(
deps = [ deps = [
"@raze__config__0_10_1//:config", "@raze__config__0_10_1//:config",
"@raze__deadpool__0_5_2//:deadpool", "@raze__deadpool__0_5_2//:deadpool",
"@raze__futures__0_3_10//:futures", "@raze__futures__0_3_12//:futures",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
"@raze__tokio__0_2_24//:tokio", "@raze__tokio__0_2_25//:tokio",
"@raze__tokio_postgres__0_5_5//:tokio_postgres", "@raze__tokio_postgres__0_5_5//:tokio_postgres",
], ],
) )

View File

@ -75,7 +75,7 @@ rust_library(
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_8//:quote",
"@raze__syn__1_0_58//:syn", "@raze__syn__1_0_60//:syn",
], ],
) )

View File

@ -57,7 +57,7 @@ rust_library(
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@ -52,7 +52,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.8.26", version = "0.8.28",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
@ -74,7 +74,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.8.26", version = "0.8.28",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":encoding_rs_build_script", ":encoding_rs_build_script",

View File

@ -52,7 +52,7 @@ rust_library(
"@raze__heck__0_3_2//:heck", "@raze__heck__0_3_2//:heck",
"@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_8//:quote",
"@raze__syn__1_0_58//:syn", "@raze__syn__1_0_60//:syn",
], ],
) )

View File

@ -72,7 +72,7 @@ rust_library(
deps = [ deps = [
"@raze__atty__0_2_14//:atty", "@raze__atty__0_2_14//:atty",
"@raze__humantime__2_1_0//:humantime", "@raze__humantime__2_1_0//:humantime",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__regex__1_4_3//:regex", "@raze__regex__1_4_3//:regex",
"@raze__termcolor__1_1_2//:termcolor", "@raze__termcolor__1_1_2//:termcolor",
], ],

View File

@ -51,7 +51,7 @@ rust_library(
version = "0.3.13", version = "0.3.13",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
], ],
) )

View File

@ -50,7 +50,7 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__rand__0_7_3//:rand", "@raze__rand__0_7_3//:rand",
], ],
) )

View File

@ -65,7 +65,7 @@ rust_library(
version = "0.1.8", version = "0.1.8",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__backtrace__0_3_55//:backtrace", "@raze__backtrace__0_3_56//:backtrace",
], ],
) )

View File

@ -80,7 +80,7 @@ rust_library(
":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_8//:quote",
"@raze__syn__1_0_58//:syn", "@raze__syn__1_0_60//:syn",
"@raze__synstructure__0_12_4//:synstructure", "@raze__synstructure__0_12_4//:synstructure",
], ],
) )

View File

@ -48,7 +48,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.13", version = "0.2.14",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__cfg_if__1_0_0//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
@ -58,7 +58,7 @@ rust_library(
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@ -93,12 +93,12 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.0.19", version = "1.0.20",
# 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__crc32fast__1_2_1//:crc32fast", "@raze__crc32fast__1_2_1//:crc32fast",
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
"@raze__miniz_oxide__0_4_3//:miniz_oxide", "@raze__miniz_oxide__0_4_3//:miniz_oxide",
], ],
) )

View File

@ -57,7 +57,7 @@ rust_library(
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@ -53,16 +53,16 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.10", version = "0.3.12",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures_channel__0_3_10//:futures_channel", "@raze__futures_channel__0_3_12//:futures_channel",
"@raze__futures_core__0_3_10//:futures_core", "@raze__futures_core__0_3_12//:futures_core",
"@raze__futures_executor__0_3_10//:futures_executor", "@raze__futures_executor__0_3_12//:futures_executor",
"@raze__futures_io__0_3_10//:futures_io", "@raze__futures_io__0_3_12//:futures_io",
"@raze__futures_sink__0_3_10//:futures_sink", "@raze__futures_sink__0_3_12//:futures_sink",
"@raze__futures_task__0_3_10//:futures_task", "@raze__futures_task__0_3_12//:futures_task",
"@raze__futures_util__0_3_10//:futures_util", "@raze__futures_util__0_3_12//:futures_util",
], ],
) )
@ -112,6 +112,8 @@ rust_library(
# Unsupported target "io_read_line" with type "test" omitted # Unsupported target "io_read_line" with type "test" omitted
# Unsupported target "io_read_to_end" with type "test" omitted
# Unsupported target "io_read_to_string" with type "test" omitted # Unsupported target "io_read_to_string" with type "test" omitted
# Unsupported target "io_read_until" with type "test" omitted # Unsupported target "io_read_until" with type "test" omitted

View File

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

View File

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

View File

@ -51,12 +51,12 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.10", version = "0.3.12",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures_core__0_3_10//:futures_core", "@raze__futures_core__0_3_12//:futures_core",
"@raze__futures_task__0_3_10//:futures_task", "@raze__futures_task__0_3_12//:futures_task",
"@raze__futures_util__0_3_10//:futures_util", "@raze__futures_util__0_3_12//:futures_util",
"@raze__num_cpus__1_13_0//:num_cpus", "@raze__num_cpus__1_13_0//:num_cpus",
], ],
) )

View File

@ -48,7 +48,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.10", version = "0.3.12",
# 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.10", version = "0.3.12",
# 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_8//:quote",
"@raze__syn__1_0_58//:syn", "@raze__syn__1_0_60//:syn",
], ],
) )

View File

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

View File

@ -49,7 +49,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.10", version = "0.3.12",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__once_cell__1_5_2//:once_cell", "@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_10//:futures_macro", "@raze__futures_macro__0_3_12//: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,14 +68,14 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.3.10", version = "0.3.12",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__futures_channel__0_3_10//:futures_channel", "@raze__futures_channel__0_3_12//:futures_channel",
"@raze__futures_core__0_3_10//:futures_core", "@raze__futures_core__0_3_12//:futures_core",
"@raze__futures_io__0_3_10//:futures_io", "@raze__futures_io__0_3_12//:futures_io",
"@raze__futures_sink__0_3_10//:futures_sink", "@raze__futures_sink__0_3_12//:futures_sink",
"@raze__futures_task__0_3_10//:futures_task", "@raze__futures_task__0_3_12//: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_4//:pin_project_lite",
"@raze__pin_utils__0_1_0//:pin_utils", "@raze__pin_utils__0_1_0//:pin_utils",

View File

@ -99,7 +99,7 @@ rust_library(
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@ -53,7 +53,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.1", version = "0.2.2",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
] + selects.with_or({ ] + selects.with_or({
@ -88,7 +88,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.1", version = "0.2.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":getrandom_build_script", ":getrandom_build_script",
@ -99,8 +99,14 @@ rust_library(
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),
) )
# Unsupported target "custom" with type "test" omitted
# Unsupported target "normal" with type "test" omitted
# Unsupported target "rdrand" with type "test" omitted

View File

@ -51,13 +51,13 @@ rust_library(
deps = [ deps = [
"@raze__base64__0_9_3//:base64", "@raze__base64__0_9_3//:base64",
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__futures__0_3_10//:futures", "@raze__futures__0_3_12//:futures",
"@raze__httpbis__0_9_1//:httpbis", "@raze__httpbis__0_9_1//:httpbis",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__log_ndc__0_2_0//:log_ndc", "@raze__log_ndc__0_2_0//:log_ndc",
"@raze__tls_api__0_4_0//:tls_api", "@raze__tls_api__0_4_0//:tls_api",
"@raze__tls_api_stub__0_4_0//:tls_api_stub", "@raze__tls_api_stub__0_4_0//:tls_api_stub",
"@raze__tokio__0_2_24//:tokio", "@raze__tokio__0_2_25//:tokio",
], ],
) )

View File

@ -57,13 +57,13 @@ 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_10//:futures_core", "@raze__futures_core__0_3_12//:futures_core",
"@raze__futures_sink__0_3_10//:futures_sink", "@raze__futures_sink__0_3_12//:futures_sink",
"@raze__futures_util__0_3_10//:futures_util", "@raze__futures_util__0_3_12//:futures_util",
"@raze__http__0_2_3//:http", "@raze__http__0_2_3//:http",
"@raze__indexmap__1_6_1//:indexmap", "@raze__indexmap__1_6_1//:indexmap",
"@raze__slab__0_4_2//:slab", "@raze__slab__0_4_2//:slab",
"@raze__tokio__0_2_24//: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_22//:tracing", "@raze__tracing__0_1_22//:tracing",
"@raze__tracing_futures__0_2_4//:tracing_futures", "@raze__tracing_futures__0_2_4//:tracing_futures",

View File

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

View File

@ -47,9 +47,9 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.1.17", version = "0.1.18",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
) )

View File

@ -61,7 +61,7 @@ rust_library(
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@ -54,7 +54,7 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.3.4", version = "1.3.5",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
@ -80,7 +80,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.3.4", version = "1.3.5",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":httparse_build_script", ":httparse_build_script",

View File

@ -92,14 +92,14 @@ rust_binary(
":httpbis", ":httpbis",
":httpbis_build_script", ":httpbis_build_script",
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__futures__0_3_10//:futures", "@raze__futures__0_3_12//:futures",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__log_ndc__0_2_0//:log_ndc", "@raze__log_ndc__0_2_0//:log_ndc",
"@raze__net2__0_2_37//:net2", "@raze__net2__0_2_37//:net2",
"@raze__rand__0_5_6//:rand", "@raze__rand__0_5_6//:rand",
"@raze__tls_api__0_4_0//:tls_api", "@raze__tls_api__0_4_0//:tls_api",
"@raze__tls_api_stub__0_4_0//:tls_api_stub", "@raze__tls_api_stub__0_4_0//:tls_api_stub",
"@raze__tokio__0_2_24//:tokio", "@raze__tokio__0_2_25//:tokio",
"@raze__void__1_0_2//:void", "@raze__void__1_0_2//:void",
] + selects.with_or({ ] + selects.with_or({
# cfg(unix) # cfg(unix)
@ -140,14 +140,14 @@ rust_library(
deps = [ deps = [
":httpbis_build_script", ":httpbis_build_script",
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__futures__0_3_10//:futures", "@raze__futures__0_3_12//:futures",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__log_ndc__0_2_0//:log_ndc", "@raze__log_ndc__0_2_0//:log_ndc",
"@raze__net2__0_2_37//:net2", "@raze__net2__0_2_37//:net2",
"@raze__rand__0_5_6//:rand", "@raze__rand__0_5_6//:rand",
"@raze__tls_api__0_4_0//:tls_api", "@raze__tls_api__0_4_0//:tls_api",
"@raze__tls_api_stub__0_4_0//:tls_api_stub", "@raze__tls_api_stub__0_4_0//:tls_api_stub",
"@raze__tokio__0_2_24//:tokio", "@raze__tokio__0_2_25//:tokio",
"@raze__void__1_0_2//:void", "@raze__void__1_0_2//:void",
] + selects.with_or({ ] + selects.with_or({
# cfg(unix) # cfg(unix)

View File

@ -57,7 +57,7 @@ rust_library(
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@ -0,0 +1,97 @@
"""
@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 "//rules/rust", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT OR Apache-2.0"
])
# Generated Targets
# Unsupported target "bench1" with type "bench" omitted
# Unsupported target "combinations" with type "bench" omitted
# Unsupported target "combinations_with_replacement" with type "bench" omitted
# Unsupported target "fold_specialization" with type "bench" omitted
# Unsupported target "powerset" with type "bench" omitted
# Unsupported target "tree_fold1" with type "bench" omitted
# Unsupported target "tuple_combinations" with type "bench" omitted
# Unsupported target "tuples" with type "bench" omitted
# Unsupported target "iris" with type "example" omitted
rust_library(
name = "itertools",
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
"use_alloc",
"use_std",
],
crate_root = "src/lib.rs",
crate_type = "lib",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"manual",
],
version = "0.10.0",
# buildifier: leave-alone
deps = [
"@raze__either__1_6_1//:either",
],
)
# Unsupported target "adaptors_no_collect" with type "test" omitted
# Unsupported target "fold_specialization" with type "test" omitted
# Unsupported target "macros_hygiene" with type "test" omitted
# Unsupported target "merge_join" with type "test" omitted
# Unsupported target "peeking_take_while" with type "test" omitted
# Unsupported target "quick" with type "test" omitted
# Unsupported target "specializations" with type "test" omitted
# Unsupported target "test_core" with type "test" omitted
# Unsupported target "test_std" with type "test" omitted
# Unsupported target "tuples" with type "test" omitted
# Unsupported target "zip" with type "test" omitted

View File

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

View File

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

View File

@ -54,12 +54,14 @@ cargo_build_script(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.4.13", version = "0.4.14",
visibility = ["//visibility:private"], visibility = ["//visibility:private"],
deps = [ deps = [
], ],
) )
# Unsupported target "value" with type "bench" omitted
rust_library( rust_library(
name = "log", name = "log",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
@ -79,12 +81,12 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.4.13", version = "0.4.14",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":log_build_script", ":log_build_script",
"@raze__cfg_if__0_1_10//:cfg_if", "@raze__cfg_if__1_0_0//:cfg_if",
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
], ],
) )

View File

@ -49,6 +49,6 @@ rust_library(
version = "0.2.0", version = "0.2.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
], ],
) )

View File

@ -78,7 +78,7 @@ rust_library(
data = [], data = [],
edition = "2018", edition = "2018",
proc_macro_deps = [ proc_macro_deps = [
"@raze__serde_derive__1_0_119//:serde_derive", "@raze__serde_derive__1_0_123//:serde_derive",
], ],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
@ -93,15 +93,15 @@ rust_library(
"@raze__antidote__1_0_0//:antidote", "@raze__antidote__1_0_0//:antidote",
"@raze__arc_swap__0_4_8//:arc_swap", "@raze__arc_swap__0_4_8//:arc_swap",
"@raze__chrono__0_4_19//:chrono", "@raze__chrono__0_4_19//:chrono",
"@raze__flate2__1_0_19//:flate2", "@raze__flate2__1_0_20//:flate2",
"@raze__fnv__1_0_7//:fnv", "@raze__fnv__1_0_7//:fnv",
"@raze__humantime__1_3_0//:humantime", "@raze__humantime__1_3_0//:humantime",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__log_mdc__0_1_0//:log_mdc", "@raze__log_mdc__0_1_0//:log_mdc",
"@raze__serde__1_0_119//:serde", "@raze__serde__1_0_123//:serde",
"@raze__serde_json__1_0_61//:serde_json", "@raze__serde_json__1_0_61//:serde_json",
"@raze__serde_value__0_6_0//:serde_value", "@raze__serde_value__0_6_0//:serde_value",
"@raze__serde_yaml__0_8_15//:serde_yaml", "@raze__serde_yaml__0_8_16//:serde_yaml",
"@raze__thread_id__3_3_0//:thread_id", "@raze__thread_id__3_3_0//:thread_id",
"@raze__typemap__0_3_3//:typemap", "@raze__typemap__0_3_3//:typemap",
] + selects.with_or({ ] + selects.with_or({
@ -110,7 +110,7 @@ rust_library(
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@ -48,7 +48,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.6.3", version = "0.6.4",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__hashbrown__0_9_1//:hashbrown", "@raze__hashbrown__0_9_1//:hashbrown",

View File

@ -52,7 +52,7 @@ rust_binary(
deps = [ deps = [
# Binaries get an implicit dependency on their crate's lib # Binaries get an implicit dependency on their crate's lib
":lz4", ":lz4",
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
"@raze__lz4_sys__1_9_2//:lz4_sys", "@raze__lz4_sys__1_9_2//:lz4_sys",
], ],
) )
@ -76,7 +76,7 @@ rust_library(
version = "1.23.2", version = "1.23.2",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
"@raze__lz4_sys__1_9_2//:lz4_sys", "@raze__lz4_sys__1_9_2//:lz4_sys",
], ],
) )

View File

@ -79,6 +79,6 @@ rust_library(
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
":lz4_sys_build_script", ":lz4_sys_build_script",
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
) )

View File

@ -59,7 +59,7 @@ rust_library(
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@ -55,7 +55,7 @@ rust_library(
deps = [ deps = [
"@raze__cfg_if__0_1_10//:cfg_if", "@raze__cfg_if__0_1_10//:cfg_if",
"@raze__iovec__0_1_4//:iovec", "@raze__iovec__0_1_4//:iovec",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__net2__0_2_37//:net2", "@raze__net2__0_2_37//:net2",
"@raze__slab__0_4_2//:slab", "@raze__slab__0_4_2//:slab",
] + selects.with_or({ ] + selects.with_or({
@ -64,7 +64,7 @@ rust_library(
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@ -63,14 +63,14 @@ rust_library(
version = "0.7.7", version = "0.7.7",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
] + selects.with_or({ ] + selects.with_or({
# cfg(unix) # cfg(unix)
( (
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@ -58,7 +58,7 @@ rust_library(
"@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__iovec__0_1_4//:iovec", "@raze__iovec__0_1_4//:iovec",
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
"@raze__mio__0_6_23//:mio", "@raze__mio__0_6_23//:mio",
], ],
"//conditions:default": [], "//conditions:default": [],

View File

@ -60,7 +60,7 @@ rust_library(
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@ -89,7 +89,7 @@ rust_library(
":nix_build_script", ":nix_build_script",
"@raze__bitflags__1_2_1//:bitflags", "@raze__bitflags__1_2_1//:bitflags",
"@raze__cfg_if__0_1_10//:cfg_if", "@raze__cfg_if__0_1_10//:cfg_if",
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
"@raze__void__1_0_2//:void", "@raze__void__1_0_2//:void",
] + selects.with_or({ ] + selects.with_or({
# cfg(any(target_os = "android", target_os = "linux")) # cfg(any(target_os = "android", target_os = "linux"))

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_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
) )

View File

@ -40,6 +40,8 @@ licenses([
# Unsupported target "objectmap" with type "example" omitted # Unsupported target "objectmap" with type "example" omitted
# Unsupported target "readobj" with type "example" omitted
rust_library( rust_library(
name = "object", name = "object",
srcs = glob(["**/*.rs"]), srcs = glob(["**/*.rs"]),
@ -63,7 +65,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.22.0", version = "0.23.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],

View File

@ -60,7 +60,7 @@ rust_library(
"@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-unknown-linux-gnu", "@io_bazel_rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [ ): [
"@raze__libc__0_2_82//:libc", "@raze__libc__0_2_85//:libc",
], ],
"//conditions:default": [], "//conditions:default": [],
}), }),

View File

@ -64,7 +64,7 @@ rust_library(
data = [], data = [],
edition = "2018", edition = "2018",
proc_macro_deps = [ proc_macro_deps = [
"@raze__pin_project_internal__1_0_4//:pin_project_internal", "@raze__pin_project_internal__1_0_5//:pin_project_internal",
], ],
rustc_flags = [ rustc_flags = [
"--cap-lints=allow", "--cap-lints=allow",
@ -73,7 +73,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.0.4", version = "1.0.5",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
], ],
@ -85,6 +85,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 "pin_project" with type "test" omitted # Unsupported target "pin_project" with type "test" omitted

View File

@ -80,6 +80,6 @@ rust_library(
":pin_project_internal_build_script", ":pin_project_internal_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_8//:quote",
"@raze__syn__1_0_58//:syn", "@raze__syn__1_0_60//:syn",
], ],
) )

View File

@ -46,11 +46,11 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "1.0.4", version = "1.0.5",
# 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_8//:quote",
"@raze__syn__1_0_58//:syn", "@raze__syn__1_0_60//:syn",
], ],
) )

View File

@ -32,6 +32,8 @@ licenses([
# Unsupported target "benchmark" with type "bench" omitted # Unsupported target "benchmark" with type "bench" omitted
# Unsupported target "3d-plot" with type "example" omitted
# Unsupported target "animation" with type "example" omitted # Unsupported target "animation" with type "example" omitted
# Unsupported target "area-chart" with type "example" omitted # Unsupported target "area-chart" with type "example" omitted
@ -52,6 +54,8 @@ licenses([
# Unsupported target "matshow" with type "example" omitted # Unsupported target "matshow" with type "example" omitted
# Unsupported target "nested_coord" with type "example" omitted
# Unsupported target "normal-dist" with type "example" omitted # Unsupported target "normal-dist" with type "example" omitted
# Unsupported target "normal-dist2" with type "example" omitted # Unsupported target "normal-dist2" with type "example" omitted
@ -76,7 +80,8 @@ rust_library(
crate_features = [ crate_features = [
"area_series", "area_series",
"line_series", "line_series",
"svg", "plotters-svg",
"svg_backend",
], ],
crate_root = "src/lib.rs", crate_root = "src/lib.rs",
crate_type = "lib", crate_type = "lib",
@ -89,10 +94,12 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.2.15", version = "0.3.0",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__num_traits__0_2_14//:num_traits", "@raze__num_traits__0_2_14//:num_traits",
"@raze__plotters_backend__0_3_0//:plotters_backend",
"@raze__plotters_svg__0_3_0//:plotters_svg",
] + selects.with_or({ ] + selects.with_or({
# cfg(not(target_arch = "wasm32")) # cfg(not(target_arch = "wasm32"))
( (

View File

@ -0,0 +1,53 @@
"""
@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 "//rules/rust", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT"
])
# Generated Targets
rust_library(
name = "plotters_backend",
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 = "0.3.0",
# buildifier: leave-alone
deps = [
],
)

View File

@ -0,0 +1,54 @@
"""
@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 "//rules/rust", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"notice", # MIT from expression "MIT"
])
# Generated Targets
rust_library(
name = "plotters_svg",
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 = "0.3.0",
# buildifier: leave-alone
deps = [
"@raze__plotters_backend__0_3_0//:plotters_backend",
],
)

View File

@ -53,9 +53,9 @@ rust_library(
deps = [ deps = [
"@raze__bytes__0_5_6//:bytes", "@raze__bytes__0_5_6//:bytes",
"@raze__fallible_iterator__0_2_0//:fallible_iterator", "@raze__fallible_iterator__0_2_0//:fallible_iterator",
"@raze__futures__0_3_10//:futures", "@raze__futures__0_3_12//:futures",
"@raze__log__0_4_13//:log", "@raze__log__0_4_14//:log",
"@raze__tokio__0_2_24//:tokio", "@raze__tokio__0_2_25//:tokio",
"@raze__tokio_postgres__0_5_5//:tokio_postgres", "@raze__tokio_postgres__0_5_5//:tokio_postgres",
], ],
) )

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