mirror of
https://gitea.mizah.xyz/mizah/dergchat
synced 2024-11-21 13:15:01 -05:00
6b6562e210
It's a mess, though... Next step is gonna be some serious re-factoring.
37 lines
1.3 KiB
TOML
37 lines
1.3 KiB
TOML
# Dergchat, a free XMPP client.
|
|
# Copyright (C) 2023 Werner Kroneman
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
[package]
|
|
name = "chatclient"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = "1.34.0"
|
|
log = "0.4.20"
|
|
env_logger = "0.10.1"
|
|
dioxus = "0.4.3"
|
|
dioxus-desktop = "0.4.3"
|
|
dioxus-hot-reload = { version="0.4.3", features=["file_watcher"] }
|
|
futures-util = "0.3.29"
|
|
xmpp = { git = "https://gitlab.com/werner.kroneman/xmpp-rs.git", rev="ecd0be4aad985e9812626d6c4499c2586c158aba"}
|
|
keyring = "2.1.0"
|
|
jid = "0.10.0"
|
|
confy = "0.5.1"
|
|
serde = "1.0"
|
|
serde_derive = "1.0" |