2025-02-22 01:47:21 +00:00
|
|
|
[package]
|
|
|
|
name = "macaw"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2025-03-06 10:42:44 +00:00
|
|
|
iced = { git = "https://github.com/iced-rs/iced", features = ["tokio"] }
|
2025-02-22 01:47:21 +00:00
|
|
|
luz = { version = "0.1.0", path = "../luz/luz" }
|
|
|
|
jid = { version = "0.1.0", path = "../luz/jid" }
|
|
|
|
tokio = "1.43.0"
|
|
|
|
tokio-stream = "0.1.17"
|
|
|
|
tracing-subscriber = "0.3.19"
|
|
|
|
tracing = "0.1.41"
|
2025-02-26 19:15:52 +00:00
|
|
|
confy = "0.6.1"
|
|
|
|
keyring = { version = "3", features = ["apple-native", "windows-native", "sync-secret-service"] }
|
|
|
|
uuid = { version = "1.13.1", features = ["v4"] }
|
|
|
|
indexmap = "2.7.1"
|
2025-03-01 05:48:26 +00:00
|
|
|
serde = { version = "1.0.218", features = ["derive"] }
|
2025-03-01 06:56:17 +00:00
|
|
|
thiserror = "2.0.11"
|
|
|
|
toml = "0.8"
|
2025-03-01 09:11:52 +00:00
|
|
|
dirs = "6.0.0"
|
2025-03-06 10:42:44 +00:00
|
|
|
chrono-humanize = "0.2.3"
|
|
|
|
chrono = "0.4.40"
|