-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (48 loc) · 1.34 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "chatd"
version = "0.2.0"
edition = "2021"
authors = ["unrenamed <[email protected]>"]
description = """
chatd is an implementation of an SSH server for real-time communication that
serves a chat room instead of a shell and provides encrypted messaging over
SSH.
"""
readme = "README.md"
license-file = "LICENSE"
homepage = "https://github.com/unrenamed/chatd"
repository = "https://github.com/unrenamed/chatd"
keywords = ["ssh", "chat", "ssh-chat", "ssh-server"]
categories = ["command-line-utilities", "network-programming"]
[dependencies]
futures = "0.3.30"
russh = { version = "0.44.0" }
russh-keys = { version = "0.44.0" }
tokio = { version = "1.36.0", features = ["io-std"] }
anyhow = "1.0.79"
async-trait = "0.1.77"
log = "0.4.20"
crossterm = "0.28.1"
terminal-keycode = "1.1.1"
rand = "0.8.5"
fnv = "1.0.7"
chrono = "0.4.38"
humantime = "2.1.0"
strum = { version = "0.26", features = ["derive"] }
enum_dispatch = "0.3.13"
circular-buffer = "0.1.7"
governor = "0.6.3"
nonzero_ext = "0.3.0"
clap = { version = "4.5.4", features = ["derive"] }
dirs = "5.0.1"
log4rs = "1.3.0"
regex = "1.10.5"
unicode-segmentation = "1.11.0"
unicode-width = "0.1.13"
lazy_static = "1.5.0"
[dev-dependencies]
assert_fs = "1.1.1"
mockall = "0.13.0"
unic-emoji-char = "0.9.0"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(tarpaulin_include)"] }