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]
|
2024-11-25 19:10:15 +00:00
|
|
|
adw = { version = "0.7", package = "libadwaita", features = ["v1_6"] }
|
|
|
|
glib = { version = "0.20", features = ["log"] }
|
|
|
|
gtk = { version = "0.9", package = "gtk4", features = ["gnome_47"] }
|
|
|
|
|
|
|
|
bytes = "1.8"
|
|
|
|
chrono = { version = "0.4", features = [
|
|
|
|
"std",
|
|
|
|
"serde",
|
|
|
|
], default-features = false }
|
|
|
|
color-thief = "0.2"
|
|
|
|
event-listener = "5.3"
|
|
|
|
futures = { version = "0.3", default-features = false, features = ["std"] }
|
|
|
|
getrandom = { features = ["linux_disable_fallback"], version = "0.2" }
|
|
|
|
gettext-rs = { version = "0.7", features = ["gettext-system"] }
|
|
|
|
http-cache = { version = "0.20", default-features = false, features = [
|
2024-11-18 17:15:42 +00:00
|
|
|
"cacache",
|
|
|
|
"cacache-tokio",
|
|
|
|
"manager-cacache",
|
|
|
|
] }
|
2024-11-25 19:10:15 +00:00
|
|
|
http-cache-reqwest = "0.15"
|
|
|
|
image = { version = "0.25", default-features = false, features = [
|
2024-11-19 12:20:40 +00:00
|
|
|
"jpeg",
|
|
|
|
"png",
|
|
|
|
"webp",
|
|
|
|
] }
|
2024-11-25 19:10:15 +00:00
|
|
|
oo7 = { version = "0.3", default-features = false, features = [
|
|
|
|
"async-std",
|
|
|
|
"native_crypto",
|
|
|
|
] }
|
|
|
|
rand = { version = "0.8", default-features = false, features = [
|
|
|
|
"std",
|
|
|
|
"std_rng",
|
|
|
|
"getrandom",
|
|
|
|
] }
|
|
|
|
reqwest = { version = "0.12", default-features = false, features = [
|
2024-11-01 19:48:10 +00:00
|
|
|
"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
|
|
|
] }
|
2024-11-25 19:10:15 +00:00
|
|
|
reqwest-middleware = { version = "0.4", features = [
|
2024-11-19 12:20:40 +00:00
|
|
|
"json",
|
|
|
|
"http2",
|
|
|
|
"charset",
|
|
|
|
] }
|
2024-11-25 19:10:15 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2024-11-23 21:39:12 +00:00
|
|
|
tokio = { version = "1", features = ["parking_lot", "rt-multi-thread", "sync"] }
|
2024-11-25 19:10:15 +00:00
|
|
|
tracing = { version = "0.1", default-features = false, features = [
|
2024-11-18 15:04:55 +00:00
|
|
|
"attributes",
|
|
|
|
"std",
|
|
|
|
] }
|
2024-11-25 19:10:15 +00:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["parking_lot"] }
|
|
|
|
url = "2.5"
|
|
|
|
xdg = "2.5"
|
|
|
|
zbus = { version = "5.0", default-features = false, features = ["async-io"] }
|
2024-10-29 10:46:58 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2024-11-25 19:10:15 +00:00
|
|
|
bindgen = { version = "0.70", default-features = false, features = ["runtime"] }
|
2024-10-29 10:46:58 +00:00
|
|
|
glib-build-tools = "0.20.0"
|
2024-10-29 18:44:40 +00:00
|
|
|
|
2024-11-25 19:10:15 +00:00
|
|
|
[features]
|
|
|
|
default = ["debug"]
|
|
|
|
debug = ["oo7/tracing"]
|
|
|
|
|
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
|