23 lines
823 B
TOML
23 lines
823 B
TOML
[package]
|
|
name = "rino"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
adw = { package = "libadwaita", version = "0.6", features = ["v1_5"] }
|
|
gtk = { package = "gtk4", version = "0.8", features = ["v4_14"] }
|
|
chrono = { version = "0.4.38", default-features = false, features = ["alloc"] }
|
|
nom = "7.1.3"
|
|
html-escape = "0.2.13"
|
|
hsluv = "0.3.1"
|
|
sha1 = "0.10.6"
|
|
tokio = { version = "1", features = [ "rt" ] }
|
|
xmpp = { git = "https://gitlab.com/xmpp-rs/xmpp-rs", features = [ "syntax-highlighting", "serde" ] }
|
|
async-channel = "2.3.1"
|
|
env_logger = { version = "0.11.3", default-features = false, features = ["color", "auto-color", "humantime"] }
|
|
camino = "1.1"
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
toml = "0.8"
|