From 5306e52757e34c1c03351a01084b7d60fe085ea6 Mon Sep 17 00:00:00 2001 From: no30bit Date: Tue, 15 Jul 2025 14:50:26 +0300 Subject: [PATCH 1/3] allow rust-ipfs git source --- earthly/rust/stdcfgs/deny.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/earthly/rust/stdcfgs/deny.toml b/earthly/rust/stdcfgs/deny.toml index a9b164847..c46f51737 100644 --- a/earthly/rust/stdcfgs/deny.toml +++ b/earthly/rust/stdcfgs/deny.toml @@ -58,6 +58,8 @@ allow-git = [ "https://github.com/txpipe/kes", "https://github.com/txpipe/curve25519-dalek", "https://github.com/input-output-hk/mithril", + # Maintained fork of an archived crates-io version. + "https://github.com/dariusc93/rust-ipfs", ] [licenses] From b09d61014e40189fa0183a177d6f03c446c8febd Mon Sep 17 00:00:00 2001 From: no30bit Date: Tue, 15 Jul 2025 15:20:13 +0300 Subject: [PATCH 2/3] upd example toml --- examples/rust/deny.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/rust/deny.toml b/examples/rust/deny.toml index 7e6ee47aa..e0f4fd18c 100644 --- a/examples/rust/deny.toml +++ b/examples/rust/deny.toml @@ -58,6 +58,8 @@ allow-git = [ "https://github.com/txpipe/kes", "https://github.com/txpipe/curve25519-dalek", "https://github.com/input-output-hk/mithril", + # Maintained fork of an archived crates-io version. + "https://github.com/dariusc93/rust-ipfs", ] [licenses] From f1ba61dfe2618620d1b8f6184ff7aec9e91ccddf Mon Sep 17 00:00:00 2001 From: no30bit Date: Tue, 15 Jul 2025 16:57:09 +0300 Subject: [PATCH 3/3] add open ssl --- earthly/rust/stdcfgs/deny.toml | 1 + examples/rust/deny.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/earthly/rust/stdcfgs/deny.toml b/earthly/rust/stdcfgs/deny.toml index c46f51737..d69e5b556 100644 --- a/earthly/rust/stdcfgs/deny.toml +++ b/earthly/rust/stdcfgs/deny.toml @@ -83,6 +83,7 @@ allow = [ "Zlib", "MIT-0", "CDLA-Permissive-2.0", + "OpenSSL", ] exceptions = [ #{ allow = ["Zlib"], crate = "tinyvec" }, diff --git a/examples/rust/deny.toml b/examples/rust/deny.toml index e0f4fd18c..e6e3ed2ec 100644 --- a/examples/rust/deny.toml +++ b/examples/rust/deny.toml @@ -83,6 +83,7 @@ allow = [ "Zlib", "MIT-0", "CDLA-Permissive-2.0", + "OpenSSL", ] exceptions = [ #{ allow = ["Zlib"], crate = "tinyvec" },