add a conversation by name, more stable client connection
This commit is contained in:
parent
7dd3428e00
commit
494e08241c
6 changed files with 203 additions and 280 deletions
36
Cargo.toml
36
Cargo.toml
|
|
@ -5,7 +5,38 @@ edition = "2024"
|
|||
|
||||
[dependencies]
|
||||
ansi_term = "*"
|
||||
async-tungstenite = { version = "0.32.0", features = ["futures-03-sink", "futures-util", "handshake", "__rustls-tls", "async-native-tls", "async-std", "async-std-runtime", "async-tls", "gio", "gio-runtime", "glib", "openssl", "real-async-native-tls", "real-async-tls", "real-native-tls", "real-tokio-native-tls", "real-tokio-openssl", "real-tokio-rustls", "rustls-native-certs", "rustls-pki-types", "tokio", "tokio-native-tls", "tokio-openssl", "tokio-runtime", "tokio-rustls-manual-roots", "tokio-rustls-native-certs", "tokio-rustls-webpki-roots", "url", "verbose-logging", "webpki-roots"] }
|
||||
async-tungstenite = { version = "0.32.0", features = [
|
||||
"futures-03-sink",
|
||||
"futures-util",
|
||||
"handshake",
|
||||
"__rustls-tls",
|
||||
"async-native-tls",
|
||||
"async-std",
|
||||
"async-std-runtime",
|
||||
"async-tls",
|
||||
"gio",
|
||||
"gio-runtime",
|
||||
"glib",
|
||||
"openssl",
|
||||
"real-async-native-tls",
|
||||
"real-async-tls",
|
||||
"real-native-tls",
|
||||
"real-tokio-native-tls",
|
||||
"real-tokio-openssl",
|
||||
"real-tokio-rustls",
|
||||
"rustls-native-certs",
|
||||
"rustls-pki-types",
|
||||
"tokio",
|
||||
"tokio-native-tls",
|
||||
"tokio-openssl",
|
||||
"tokio-runtime",
|
||||
"tokio-rustls-manual-roots",
|
||||
"tokio-rustls-native-certs",
|
||||
"tokio-rustls-webpki-roots",
|
||||
"url",
|
||||
"verbose-logging",
|
||||
"webpki-roots",
|
||||
] }
|
||||
axum = "*"
|
||||
base64 = "0.22.1"
|
||||
bytes = "*"
|
||||
|
|
@ -52,7 +83,8 @@ dotenv = "0.15.0"
|
|||
aes-gcm = "0.10.3"
|
||||
tokio-native-tls = "0.3.1"
|
||||
hkdf = "0.12.4"
|
||||
chacha20poly1305 = "0.10.1"
|
||||
block-modes = "0.9.1"
|
||||
cbc = "0.1.2"
|
||||
aes = "0.8.4"
|
||||
strum = "0.27.2"
|
||||
strum_macros = "0.27.2"
|
||||
|
|
|
|||
Loading…
Reference in a new issue