36 lines
1 KiB
TOML
36 lines
1 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"] }
|
|
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"] }
|
|
oo7 = "0.3.3"
|
|
rand = "0.8"
|
|
reqwest = { version = "0.12.9", default-features = false, features = [
|
|
"charset",
|
|
"json",
|
|
"http2",
|
|
"rustls-tls",
|
|
] }
|
|
serde = { version = "1.0.214", features = ["derive"] }
|
|
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"] }
|
|
zbus = { version = "5.0.1", features = ["chrono"] }
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.70.1"
|
|
glib-build-tools = "0.20.0"
|
|
|
|
[profile.dev]
|
|
split-debuginfo = "unpacked"
|