monorepo/dashboard/Cargo.toml

32 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "dashboard"
2024-09-24 03:01:47 +00:00
version = "0.1.3"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
adw = { version = "0.5", package = "libadwaita", features = [ "v1_2" ] }
2024-09-24 02:44:25 +00:00
async-std = { version = "1.13" }
cairo-rs = { version = "0.18" }
2023-08-07 23:06:00 +00:00
chrono = { version = "0.4", features = ["serde"] }
fluent-ergonomics = { path = "../fluent-ergonomics/" }
fluent = { version = "0.16" }
futures = { version = "0.3" }
geo-types = { path = "../geo-types/" }
gio = { version = "0.18" }
glib = { version = "0.18" }
gdk = { version = "0.7", package = "gdk4" }
gtk = { version = "0.7", package = "gtk4" }
2023-08-07 23:06:00 +00:00
lazy_static = { version = "1.4" }
2023-08-09 18:11:10 +00:00
memorycache = { path = "../memorycache/" }
2023-08-07 23:06:00 +00:00
reqwest = { version = "0.11", features = ["json"] }
serde_json = { version = "1" }
2024-09-24 02:44:25 +00:00
serde = { version = "1", features = [ "derive" ] }
2023-08-07 23:06:00 +00:00
tokio = { version = "1", features = ["full"] }
unic-langid = { version = "0.9" }
2023-08-10 15:07:35 +00:00
[build-dependencies]
glib-build-tools = "0.18"
2023-08-10 15:07:35 +00:00