drop El Capitan support

This commit is contained in:
Damien Elmes 2020-11-12 20:00:40 +10:00
parent eed9ca9885
commit 0489c92908
7 changed files with 14 additions and 15 deletions

View file

@ -59,7 +59,7 @@ alias(
alias( alias(
name = "coarsetime", name = "coarsetime",
actual = "@raze__coarsetime__0_1_14//:coarsetime", actual = "@raze__coarsetime__0_1_16//:coarsetime",
tags = [ tags = [
"cargo-raze", "cargo-raze",
"manual", "manual",

5
cargo/Cargo.lock generated
View file

@ -268,8 +268,9 @@ dependencies = [
[[package]] [[package]]
name = "coarsetime" name = "coarsetime"
version = "0.1.14" version = "0.1.16"
source = "git+https://github.com/ankitects/rust-coarsetime.git?tag=anki-2020-11-03#f9e2c86216f0f4803bc75404828318fc206dab29" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0cbaaa2e4f75bd7eff165a3d24345a374efddbe0e90be326e62048937e56f65a"
dependencies = [ dependencies = [
"lazy_static", "lazy_static",
"libc", "libc",

View file

@ -322,13 +322,13 @@ def raze_fetch_remote_crates():
) )
maybe( maybe(
new_git_repository, http_archive,
name = "raze__coarsetime__0_1_14", name = "raze__coarsetime__0_1_16",
remote = "https://github.com/ankitects/rust-coarsetime.git", url = "https://crates.io/api/v1/crates/coarsetime/0.1.16/download",
shallow_since = "1594611111 +1000", type = "tar.gz",
commit = "f9e2c86216f0f4803bc75404828318fc206dab29", sha256 = "0cbaaa2e4f75bd7eff165a3d24345a374efddbe0e90be326e62048937e56f65a",
build_file = Label("//cargo/remote:BUILD.coarsetime-0.1.14.bazel"), strip_prefix = "coarsetime-0.1.16",
init_submodules = True, build_file = Label("//cargo/remote:BUILD.coarsetime-0.1.16.bazel"),
) )
maybe( maybe(

View file

@ -280,7 +280,7 @@
}, },
{ {
"name": "coarsetime", "name": "coarsetime",
"version": "0.1.14", "version": "0.1.16",
"authors": "Frank Denis <github@pureftpd.org>", "authors": "Frank Denis <github@pureftpd.org>",
"repository": "https://github.com/jedisct1/rust-coarsetime", "repository": "https://github.com/jedisct1/rust-coarsetime",
"license": "ISC", "license": "ISC",

View file

@ -47,7 +47,7 @@ rust_library(
"cargo-raze", "cargo-raze",
"manual", "manual",
], ],
version = "0.1.14", version = "0.1.16",
# buildifier: leave-alone # buildifier: leave-alone
deps = [ deps = [
"@raze__lazy_static__1_4_0//:lazy_static", "@raze__lazy_static__1_4_0//:lazy_static",

View file

@ -23,8 +23,6 @@ COMMITS_SHALLOW_SINCE = {
"96e1358555c49905de89170f2b1102a7d8b6c4c2": "1598411535 +1000", "96e1358555c49905de89170f2b1102a7d8b6c4c2": "1598411535 +1000",
# prost # prost
"4ded4a98ef339da0b7babd4efee3fbe8adaf746b": "1598739849 -0700", "4ded4a98ef339da0b7babd4efee3fbe8adaf746b": "1598739849 -0700",
# coarsetime
"f9e2c86216f0f4803bc75404828318fc206dab29": "1594611111 +1000",
# pyo3 # pyo3
"3b3ba4e3abd57bc3b8f86444b3f61e6e2f4c5fc1": "1603809036 +0900", "3b3ba4e3abd57bc3b8f86444b3f61e6e2f4c5fc1": "1603809036 +0900",
} }

View file

@ -32,7 +32,7 @@ async-compression = { version = "0.3.5", features = ["stream", "gzip"] }
blake3 = "0.3.5" blake3 = "0.3.5"
bytes = "0.5.5" bytes = "0.5.5"
chrono = "0.4.13" chrono = "0.4.13"
coarsetime = { git = "https://github.com/ankitects/rust-coarsetime.git", tag="anki-2020-11-03" } coarsetime = "0.1.16"
failure = "0.1.8" failure = "0.1.8"
flate2 = "1.0.16" flate2 = "1.0.16"
fluent = "0.13.1" fluent = "0.13.1"