1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 11:17:15 +03:00

pin rcgen to 0.8.11

0.8.12 breaks the API by removing Send+Sync from Certificate;
pin until that is resolved.

refs: https://github.com/est31/rcgen/issues/63
This commit is contained in:
Wez Furlong 2021-08-23 07:45:35 -07:00
parent 6f404d8692
commit a7fa2fe0e1
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -3596,9 +3596,9 @@ dependencies = [
[[package]]
name = "rcgen"
version = "0.8.12"
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffd94b6e266c4d2865f4e514af50a409625291daf7dc914609e0f3415719382d"
checksum = "48b4fc1b81d685fcd442a86da2e2c829d9e353142633a8159f42bf28e7e94428"
dependencies = [
"chrono",
"pem",

View File

@ -20,7 +20,7 @@ percent-encoding = "2"
portable-pty = { path = "../pty", features = ["serde_support"]}
promise = { path = "../promise" }
rangeset = { path = "../rangeset" }
rcgen = "0.8"
rcgen = "=0.8.11"
smol = "1.2"
url = "2"
wezterm-term = { path = "../term", features=["use_serde"] }