2023-03-30 06:04:36 +00:00
|
|
|
[package]
|
2024-06-08 08:30:56 +00:00
|
|
|
name = "img2irc-rs"
|
2024-11-03 01:35:39 +00:00
|
|
|
version = "1.0.6"
|
2023-06-23 02:32:04 +00:00
|
|
|
authors = ["waveplate"]
|
|
|
|
github = "https://github.com/waveplate/img2irc"
|
2024-06-25 09:18:38 +00:00
|
|
|
repository = "https://github.com/waveplate/img2irc"
|
2024-06-08 08:13:54 +00:00
|
|
|
description = "CLI utility to convert images to halfblock ANSI or IRC art with various optional post-processing filters"
|
|
|
|
license = "GPL-3.0-only"
|
|
|
|
readme = "README.md"
|
2023-03-30 06:04:36 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
2023-05-02 15:17:10 +00:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
opt-level = "z"
|
|
|
|
strip = true # Automatically strip symbols from the binary.
|
|
|
|
|
2024-06-08 08:13:54 +00:00
|
|
|
[target.x86_64-unknown-linux-musl]
|
|
|
|
linker = "musl-gcc"
|
|
|
|
|
2024-10-01 19:57:39 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "img2irc"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2023-03-30 06:04:36 +00:00
|
|
|
[dependencies]
|
|
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
|
|
|
|
reqwest = "0.11.14"
|
2024-11-03 01:35:39 +00:00
|
|
|
photon-rs = { version = "0.3.2", default-features = false, git = "https://github.com/silvia-odwyer/photon", rev = "3b72d357848cd76be9363e87ad0cd02a19b988d2" }
|
2023-03-30 06:04:36 +00:00
|
|
|
clap = { version = "4.2.0", features = ["cargo", "derive"] }
|
|
|
|
url = "2.3.1"
|
2024-06-08 08:13:54 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_env = "musl")'.dependencies]
|
|
|
|
openssl-sys = "0.9.102"
|