-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (28 loc) · 1020 Bytes
/
Cargo.toml
File metadata and controls
36 lines (28 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "tuxbubbles"
version = "0.1.0"
authors = ["Elliot Nash <elliotnash@gmail.com>"]
edition = "2024"
publish = false
[workspace]
members = ["api"]
[profile.release]
lto = true
[dependencies]
bluebubbles-api = { path = "./api" }
gettext-rs = { version = "0.7", features = ["gettext-system"] }
relm4 = { version = "0.10.0", features = ["libadwaita", "gnome_48"] }
libadwaita = { version = "0.8.1", features = ["v1_8"] }
tracing = "0.1.44"
tracing-subscriber = "0.3"
reqwest = { version = "0.12", features = ["json", "rustls-tls-no-provider"] }
reqwest-websocket = { version = "0.5", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-rustls-aws-lc-rs", "sqlite", "chrono", "uuid", "json"] }
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.19", features = ["v4", "serde"] }
tokio = { version = "1.48", features = ["full"] }
oo7 = "0.5.0"
fancy-regex = "0.17.0"
anyhow = "1.0"