3edf74d890
Add a way to sign and verify keys. Still need to figure out the keyserver situation and how to make that shit work
21 lines
420 B
TOML
21 lines
420 B
TOML
[package]
|
|
name = "fedichat"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
# This is kinda an old version but the dalek side of v3 is still in prerelease
|
|
ed25519 = "2.2.3"
|
|
rmp-serde = "1.3.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_bytes = "0.11.19"
|
|
thiserror = "2.0.18"
|
|
time = {version = "0.3.47", features = ["serde"]}
|
|
|
|
[dependencies.uuid]
|
|
version = "1.23.1"
|
|
features = [
|
|
"v4",
|
|
"serde"
|
|
]
|