Bug 1601512 - Point the pkcs11 dependency to the upstream repo. r=glandium

I messed up and deleted my own fork once my PR was merged, given the owner said
they would do a release.

Differential Revision: https://phabricator.services.mozilla.com/D55894

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Emilio Cobos Álvarez 2019-12-05 01:25:51 +00:00
Родитель ca6c534bb3
Коммит 1d77c9e9e8
3 изменённых файлов: 10 добавлений и 10 удалений

Просмотреть файл

@ -17,6 +17,11 @@ git = "https://github.com/mozilla/neqo"
replace-with = "vendored-sources"
tag = "v0.1.6"
[source."https://github.com/mheese/rust-pkcs11"]
git = "https://github.com/mheese/rust-pkcs11"
replace-with = "vendored-sources"
rev = "0810cd5adf4ac8031cc204df3e877d84595c7438"
[source."https://github.com/kvark/spirv_cross"]
branch = "wgpu"
git = "https://github.com/kvark/spirv_cross"
@ -32,11 +37,6 @@ branch = "rust_1_32"
git = "https://github.com/hsivonen/packed_simd"
replace-with = "vendored-sources"
[source."https://github.com/emilio/rust-pkcs11"]
branch = "master"
git = "https://github.com/emilio/rust-pkcs11"
replace-with = "vendored-sources"
[source."https://github.com/alexcrichton/mio-named-pipes"]
branch = "master"
git = "https://github.com/alexcrichton/mio-named-pipes"

6
Cargo.lock сгенерированный
Просмотреть файл

@ -2615,7 +2615,7 @@ dependencies = [
"env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"pkcs11 0.4.1 (git+https://github.com/emilio/rust-pkcs11)",
"pkcs11 0.4.1 (git+https://github.com/mheese/rust-pkcs11?rev=0810cd5adf4ac8031cc204df3e877d84595c7438)",
"sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
@ -2765,7 +2765,7 @@ dependencies = [
[[package]]
name = "pkcs11"
version = "0.4.1"
source = "git+https://github.com/emilio/rust-pkcs11#c8d620f89f1611c3ad76b6d6a0c042c6e882ec42"
source = "git+https://github.com/mheese/rust-pkcs11?rev=0810cd5adf4ac8031cc204df3e877d84595c7438#0810cd5adf4ac8031cc204df3e877d84595c7438"
dependencies = [
"libloading 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
"num-bigint 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
@ -4921,7 +4921,7 @@ dependencies = [
"checksum phf_generator 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
"checksum phf_macros 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
"checksum phf_shared 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
"checksum pkcs11 0.4.1 (git+https://github.com/emilio/rust-pkcs11)" = "<none>"
"checksum pkcs11 0.4.1 (git+https://github.com/mheese/rust-pkcs11?rev=0810cd5adf4ac8031cc204df3e877d84595c7438)" = "<none>"
"checksum pkg-config 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "3a8b4c6b8165cd1a1cd4b9b120978131389f64bdaf456435caa41e630edba903"
"checksum plain 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
"checksum plane-split 0.15.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ffe16a646a08f4b4dd74035b9ff8e378eb1a4012a74f14f5889e7001cdbece33"

Просмотреть файл

@ -12,8 +12,8 @@ byteorder = "1.3"
env_logger = {version = "0.6", default-features = false } # disable `regex` to reduce code size
lazy_static = "1"
log = "0.4"
# Waiting for https://github.com/mheese/rust-pkcs11/pull/16
pkcs11 = {git = "https://github.com/emilio/rust-pkcs11"}
# Waiting for a release with https://github.com/mheese/rust-pkcs11/pull/16, then this can go
pkcs11 = { git = "https://github.com/mheese/rust-pkcs11", rev="0810cd5adf4ac8031cc204df3e877d84595c7438" }
sha2 = "0.8"
[target."cfg(target_os = \"windows\")".dependencies.winapi]