audrey/Cargo.toml

63 lines
1.5 KiB
TOML
Raw Normal View History

2024-10-29 10:37:15 +00:00
[package]
name = "audrey"
2024-11-06 10:37:12 +00:00
version = "0.1.0" # AUDREY_VERSION
2024-10-29 10:37:15 +00:00
edition = "2021"
[dependencies]
adw = { version = "0.7.0", package = "libadwaita", features = ["v1_6"] }
2024-10-31 12:16:42 +00:00
async-channel = "2.3.1"
2024-11-05 11:07:30 +00:00
bytes = "1.8.0"
chrono = { version = "0.4.38", features = ["serde", "std"], default-features = false }
2024-11-13 21:28:49 +00:00
color-thief = "0.2.2"
2024-11-02 15:21:13 +00:00
event-listener = "5.3.1"
2024-11-05 10:12:03 +00:00
futures = "0.3.31"
2024-10-30 06:32:21 +00:00
gettext-rs = { version = "0.7.2", features = ["gettext-system"] }
2024-10-29 10:37:15 +00:00
gtk = { version = "0.9.2", package = "gtk4", features = ["v4_16"] }
2024-11-18 17:15:42 +00:00
http-cache = { version = "0.20.0", default-features = false, features = [
"cacache",
"cacache-tokio",
"manager-cacache",
] }
http-cache-reqwest = "0.15.0"
image = { version = "0.25.5", default-features = false, features = [
"avif-native",
"jpeg",
"png",
"webp",
] }
2024-11-01 08:29:59 +00:00
oo7 = "0.3.3"
2024-11-01 19:48:10 +00:00
rand = "0.8"
reqwest = { version = "0.12.9", default-features = false, features = [
"charset",
2024-11-18 15:04:55 +00:00
"gzip",
2024-11-01 19:48:10 +00:00
"json",
"http2",
2024-11-18 15:04:55 +00:00
"rustls-tls-native-roots",
2024-11-01 19:48:10 +00:00
] }
reqwest-middleware = { version = "0.4.0", features = [
"json",
"http2",
"charset",
] }
2024-10-31 12:16:42 +00:00
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.133"
2024-11-20 20:15:12 +00:00
tokio = { version = "1", features = ["parking_lot", "rt-multi-thread"] }
2024-11-18 15:04:55 +00:00
tracing = { version = "0.1.40", default-features = false, features = [
"attributes",
"std",
] }
2024-11-04 09:12:13 +00:00
tracing-subscriber = "0.3.18"
2024-11-10 14:36:11 +00:00
url = { version = "2.5.2", features = ["serde"] }
2024-11-18 17:15:42 +00:00
xdg = "2.5.2"
2024-11-01 18:33:10 +00:00
zbus = { version = "5.0.1", features = ["chrono"] }
2024-10-29 10:46:58 +00:00
[build-dependencies]
2024-10-30 08:00:49 +00:00
bindgen = "0.70.1"
2024-10-29 10:46:58 +00:00
glib-build-tools = "0.20.0"
2024-10-29 18:44:40 +00:00
[profile.dev]
split-debuginfo = "unpacked"
2024-11-18 21:58:44 +00:00
[profile.bench]
debug = true