0f36ee454e
All messages are now signed by default with a randomly generated key. TODO still is keyserver stuff, locking down the config file potentially (or telling users to do it in the readme?), and doing any sort of verification
26 lines
788 B
TOML
26 lines
788 B
TOML
[package]
|
|
name = "fedicommander"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
quinn = "0.11.9"
|
|
fedichat = {git = "https://git.firechicken.net/fedichat/fedichat-lib"}
|
|
#fedichat = {path = "../fedichat-lib"}
|
|
tracing = "0.1.44"
|
|
tracing-subscriber = "0.3.23"
|
|
clap = { version = "4.6.1", features = ["derive"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
thiserror = "2.0.18"
|
|
toml = "1.1.2"
|
|
ctrlc-async = { version = "3.2.2", features = ["termination"] }
|
|
rmp-serde = "1.3.1"
|
|
dotenv = "0.15.0"
|
|
time = { version = "0.3.47", features = ["serde"] }
|
|
hickory-resolver = "0.26.1"
|
|
expanduser = "1.2.2"
|
|
uuid = { version = "1.23.2", features = ["v4"] }
|
|
ed25519-dalek = { version = "2.2.0", features = ["rand_core", "serde"] }
|
|
rand = "0.8"
|