recent change to photon-rs introduced a bug that breaks builds, change Cargo.toml to reference specific photon-rs commit

This commit is contained in:
Waveplate 2024-11-02 18:35:39 -07:00
parent b26963c7d2
commit 7da30473e4

View File

@ -1,6 +1,6 @@
[package] [package]
name = "img2irc-rs" name = "img2irc-rs"
version = "1.0.5" version = "1.0.6"
authors = ["waveplate"] authors = ["waveplate"]
github = "https://github.com/waveplate/img2irc" github = "https://github.com/waveplate/img2irc"
repository = "https://github.com/waveplate/img2irc" repository = "https://github.com/waveplate/img2irc"
@ -25,7 +25,7 @@ path = "src/main.rs"
[dependencies] [dependencies]
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] } tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
reqwest = "0.11.14" reqwest = "0.11.14"
photon-rs = "0.3.2" photon-rs = { version = "0.3.2", default-features = false, git = "https://github.com/silvia-odwyer/photon", rev = "3b72d357848cd76be9363e87ad0cd02a19b988d2" }
clap = { version = "4.2.0", features = ["cargo", "derive"] } clap = { version = "4.2.0", features = ["cargo", "derive"] }
url = "2.3.1" url = "2.3.1"