rino/Cargo.toml
Emmanuel Gil Peyrot f09a1cff2d Enable syntax-highlighting in tokio-xmpp
This makes logs much nicer to read.
2024-06-04 18:06:22 +02:00

21 lines
791 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" }
tokio-xmpp = { git = "https://gitlab.com/xmpp-rs/xmpp-rs", features = ["syntax-highlighting"] }
async-channel = "2.3.1"
env_logger = { version = "0.11.3", default-features = false, features = ["color", "auto-color", "humantime"] }