From 89bf419067b1197dcf793812517ef45d4f00a610 Mon Sep 17 00:00:00 2001 From: Alex Page Date: Sat, 24 Jun 2023 17:14:33 -0400 Subject: [PATCH] Use official rust-openssl repo The change I need is merged, but not released --- Cargo.lock | 6 +++--- umskt/Cargo.toml | 3 +-- xpkey/src/main.rs | 1 - 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1a8af0f..e139075 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -230,7 +230,7 @@ checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "openssl" version = "0.10.55" -source = "git+https://github.com/anpage/rust-openssl.git#a50639888f80f0a935ec621c328d761428aff32a" +source = "git+https://github.com/sfackler/rust-openssl#9d180ec94a92d2d08d6463ad047d9d7e7a8d9561" dependencies = [ "bitflags", "cfg-if", @@ -244,7 +244,7 @@ dependencies = [ [[package]] name = "openssl-macros" version = "0.1.1" -source = "git+https://github.com/anpage/rust-openssl.git#a50639888f80f0a935ec621c328d761428aff32a" +source = "git+https://github.com/sfackler/rust-openssl#9d180ec94a92d2d08d6463ad047d9d7e7a8d9561" dependencies = [ "proc-macro2", "quote", @@ -254,7 +254,7 @@ dependencies = [ [[package]] name = "openssl-sys" version = "0.9.90" -source = "git+https://github.com/anpage/rust-openssl.git#a50639888f80f0a935ec621c328d761428aff32a" +source = "git+https://github.com/sfackler/rust-openssl#9d180ec94a92d2d08d6463ad047d9d7e7a8d9561" dependencies = [ "cc", "libc", diff --git a/umskt/Cargo.toml b/umskt/Cargo.toml index 6faebc0..701f790 100644 --- a/umskt/Cargo.toml +++ b/umskt/Cargo.toml @@ -2,12 +2,11 @@ name = "umskt" version = "0.1.0" edition = "2021" -crate-type = ["lib"] [dependencies] anyhow = "1.0.71" bitreader = "0.3.7" -openssl = { git = "https://github.com/anpage/rust-openssl.git" } +openssl = { git = "https://github.com/sfackler/rust-openssl" } thiserror = "1.0.40" [dev-dependencies] diff --git a/xpkey/src/main.rs b/xpkey/src/main.rs index 303f317..9a23592 100644 --- a/xpkey/src/main.rs +++ b/xpkey/src/main.rs @@ -4,7 +4,6 @@ mod keys; use anyhow::{bail, Result}; use clap::Parser; use keys::Bink; - use umskt::{ bink1998, bink2002, confid, crypto::{EllipticCurve, PrivateKey},