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-01 19:48:10 +00:00
|
|
|
base16ct = { version = "0.2.0", features = ["std"] }
|
2024-11-05 11:07:30 +00:00
|
|
|
bytes = "1.8.0"
|
2024-11-01 18:33:10 +00:00
|
|
|
chrono = { version = "0.4.38", features = ["serde"] }
|
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-01 19:48:10 +00:00
|
|
|
md-5 = { version = "0.10.6", features = ["asm"] }
|
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",
|
|
|
|
"json",
|
|
|
|
"http2",
|
|
|
|
"rustls-tls",
|
|
|
|
] }
|
2024-10-31 12:16:42 +00:00
|
|
|
serde = { version = "1.0.214", features = ["derive"] }
|
|
|
|
tokio = { version = "1", features = ["rt-multi-thread"] }
|
2024-11-04 09:12:13 +00:00
|
|
|
tracing = { version = "0.1.40", default-features = false, features = ["attributes", "std"] }
|
|
|
|
tracing-subscriber = "0.3.18"
|
2024-11-01 08:29:59 +00:00
|
|
|
url = "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"
|