From b48df1048ed397bec41b9bf1336ec86fe8f9d1d7 Mon Sep 17 00:00:00 2001 From: Andrew Lee Rubinger Date: Sat, 27 Jul 2024 21:54:11 -0700 Subject: [PATCH] Issue #94: Try to install openssl via cargo --- Justfile | 1 + crates/tbdex/Cargo.toml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Justfile b/Justfile index ff56ba79..48e62e66 100644 --- a/Justfile +++ b/Justfile @@ -12,6 +12,7 @@ setup: rustup default 1.78.0 rustup target add aarch64-apple-darwin fi + cargo add openssl # Build a release variant build: setup diff --git a/crates/tbdex/Cargo.toml b/crates/tbdex/Cargo.toml index 9acf3bae..d44a871d 100644 --- a/crates/tbdex/Cargo.toml +++ b/crates/tbdex/Cargo.toml @@ -23,6 +23,7 @@ thiserror = { workspace = true } type-safe-id = { version = "0.3.0", features = ["serde"] } uuid = "1.9.0" web5 = { workspace = true } +openssl = "0.10.66" [build-dependencies] -reqwest = { version = "0.12.5", features = ["blocking"] } \ No newline at end of file +reqwest = { version = "0.12.5", features = ["blocking"] }