mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-04-18 22:32:52 +00:00
29 lines
545 B
TOML
29 lines
545 B
TOML
[package]
|
|
name = "protocols"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["rlib", "cdylib", "staticlib"]
|
|
|
|
[dependencies]
|
|
thiserror = "2.0.18"
|
|
tracing = "0.1.44"
|
|
serde = "1.0.228"
|
|
prost = "0.14.1"
|
|
rand = "0.10.1"
|
|
blahaj = "0.6.0"
|
|
serde_json = "1.0"
|
|
base64 = "0.22.1"
|
|
hmac = "0.13.0"
|
|
sha2 = "0.11.0"
|
|
tokio = { version = "1.44", features = ["full"] }
|
|
sqlx = { version = "0.9.0-alpha.1", default-features = false, features = [
|
|
"derive",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
pretty_env_logger = "0.5.0"
|
|
|
|
[build-dependencies]
|
|
prost-build = "0.14.1"
|