eaeb293915
State system is fully implemented and passing tests. I added in a handful of unit tests to test most of the available operations. Other work has involved getting the interface between client and server right and starting on the actual message handler. This involves starting work on the db as well
24 lines
774 B
TOML
24 lines
774 B
TOML
[package]
|
|
name = "confetti"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
diesel = { version = "2.3.9", features = ["postgres_backend"] }
|
|
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"
|
|
diesel-async = { version = "0.9.0", features = ["postgres","deadpool"] }
|
|
ctrlc-async = { version = "3.2.2", features = ["termination"] }
|
|
rmp-serde = "1.3.1"
|
|
diesel-derive-composite = "0.1.0"
|
|
bcrypt = "0.19.1"
|
|
#postcard = {version = "1.1.3", features = ["use-std"]}
|