From 492079af6c11af0200cb5d44a3111a4910fe9634 Mon Sep 17 00:00:00 2001 From: Waveplate Date: Sun, 15 Dec 2024 07:33:48 -0800 Subject: [PATCH] bump version to 1.1.0 and update dependencies --- Cargo.toml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 555ab28..0a640cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "img2irc-rs" -version = "1.0.6" +version = "1.1.0" authors = ["waveplate"] github = "https://github.com/waveplate/img2irc" repository = "https://github.com/waveplate/img2irc" @@ -15,16 +15,21 @@ codegen-units = 1 opt-level = "z" strip = true # Automatically strip symbols from the binary. +[target.x86_64-unknown-linux-musl] +linker = "musl-gcc" + [[bin]] name = "img2irc" path = "src/main.rs" [dependencies] tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] } -reqwest = { version = "0.11.14", default-features = false, features = ["rustls-tls"] } +reqwest = "0.11.14" photon-rs = { version = "0.3.2", default-features = false, git = "https://github.com/silvia-odwyer/photon", rev = "3b72d357848cd76be9363e87ad0cd02a19b988d2" } +#photon-rs = "0.3.2" clap = { version = "4.2.0", features = ["cargo", "derive"] } url = "2.3.1" +atty = "0.2.14" -[build-dependencies] -cc = "1.0" +[target.'cfg(target_env = "musl")'.dependencies] +openssl = { version = "0.10", features = ["vendored"] }