62 lines
1.5 KiB
TOML
62 lines
1.5 KiB
TOML
[package]
|
|
name = "audrey"
|
|
version = "0.1.0" # AUDREY_VERSION
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
adw = { version = "0.7.0", package = "libadwaita", features = ["v1_6"] }
|
|
async-channel = "2.3.1"
|
|
bytes = "1.8.0"
|
|
chrono = { version = "0.4.38", features = ["serde", "std"], default-features = false }
|
|
color-thief = "0.2.2"
|
|
event-listener = "5.3.1"
|
|
futures = "0.3.31"
|
|
gettext-rs = { version = "0.7.2", features = ["gettext-system"] }
|
|
gtk = { version = "0.9.2", package = "gtk4", features = ["v4_16"] }
|
|
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",
|
|
] }
|
|
oo7 = "0.3.3"
|
|
rand = "0.8"
|
|
reqwest = { version = "0.12.9", default-features = false, features = [
|
|
"charset",
|
|
"gzip",
|
|
"json",
|
|
"http2",
|
|
"rustls-tls-native-roots",
|
|
] }
|
|
reqwest-middleware = { version = "0.4.0", features = [
|
|
"json",
|
|
"http2",
|
|
"charset",
|
|
] }
|
|
serde = { version = "1.0.214", features = ["derive"] }
|
|
serde_json = "1.0.133"
|
|
tokio = { version = "1", features = ["rt-multi-thread"] }
|
|
tracing = { version = "0.1.40", default-features = false, features = [
|
|
"attributes",
|
|
"std",
|
|
] }
|
|
tracing-subscriber = "0.3.18"
|
|
url = { version = "2.5.2", features = ["serde"] }
|
|
xdg = "2.5.2"
|
|
zbus = { version = "5.0.1", features = ["chrono"] }
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.70.1"
|
|
glib-build-tools = "0.20.0"
|
|
|
|
[profile.dev]
|
|
split-debuginfo = "unpacked"
|
|
|
|
[profile.bench]
|
|
debug = true
|