From ae63ec36bd1ce4d547e00ae83bbe96d1c0197b2b Mon Sep 17 00:00:00 2001 From: lolpro11 Date: Wed, 24 Jan 2024 12:12:33 -0800 Subject: [PATCH 1/4] remove nonstatic deps --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 07d1c04..fc5f4d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,9 +18,9 @@ derivative = "2.1" serde = {version = "1.0", features = ["rc"]} serde_derive = "1.0" chrono = "0.4" -itertools = "0.11" +itertools = "0.12" sha2 = "0.10" -zip = "0.6" +zip = { version = "0.6.6", default-features = false } thiserror = "1" rgb = "0.8" From 31a82a023d8c057c512f3e49d0e6c9080d8ccb3d Mon Sep 17 00:00:00 2001 From: lolpro11 Date: Wed, 24 Jan 2024 13:37:43 -0800 Subject: [PATCH 2/4] move to rustls for static compiles --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fc5f4d6..b5e027c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ thiserror = "1" rgb = "0.8" futures = { version = "0.3", optional = true } -reqwest = { version = "0.11", optional = true, features = ["blocking"]} +reqwest = { version = "0.11", optional = true, default-features = false, features = ["blocking", "rustls-tls"]} [dev-dependencies] serde_json = "1.0" From c6d68b225e026921833c88c3e242649071e6688a Mon Sep 17 00:00:00 2001 From: lolpro11 Date: Wed, 24 Jan 2024 14:37:15 -0800 Subject: [PATCH 3/4] add deflate feature --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b5e027c..7800bf2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ serde_derive = "1.0" chrono = "0.4" itertools = "0.12" sha2 = "0.10" -zip = { version = "0.6.6", default-features = false } +zip = { version = "0.6.6", default-features = false, features = ["deflate"] } thiserror = "1" rgb = "0.8" From 0b8ea0e136571c2773ccbbe56b1cda5f55da82c0 Mon Sep 17 00:00:00 2001 From: lolpro11 <89674666+lolpro11@users.noreply.github.com> Date: Fri, 26 Jan 2024 13:01:18 -0800 Subject: [PATCH 4/4] Update Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7800bf2..3500bf7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ serde_derive = "1.0" chrono = "0.4" itertools = "0.12" sha2 = "0.10" -zip = { version = "0.6.6", default-features = false, features = ["deflate"] } +zip = { git = "https://github.com/lolpro11/zip" } thiserror = "1" rgb = "0.8"