nex-account/Cargo.toml

26 lines
626 B
TOML
Raw Permalink Normal View History

2026-06-16 13:47:49 +02:00
[package]
name = "nex-account"
2026-07-29 16:21:40 +02:00
version = "0.2.5"
2026-06-16 13:47:49 +02:00
edition = "2024"
2026-06-20 21:51:03 +02:00
publish = ["spbr"]
2026-06-16 13:47:49 +02:00
[dependencies]
prost = "0.14.3"
tonic-prost = "*"
tonic = "0.14.6"
tokio = { version = "1.52.3", features = ["macros", "rt-multi-thread"] }
2026-06-16 14:32:32 +02:00
sqlx = { version = "0.9.0", features = ["postgres", "runtime-tokio"] }
log = "0.4.32"
simplelog = "0.12.2"
hmac = "0.13.0"
md-5 = "0.11.0"
2026-07-05 21:00:08 +02:00
spbr-common = { version = "0.1.0", registry = "spbr", features = ["crypto"] }
bytemuck = { version = "1.25.0", features = ["derive"] }
2026-07-23 14:02:16 +00:00
base64 = "0.23.0"
2026-07-05 21:00:08 +02:00
thiserror = "2.0.18"
[dev-dependencies]
rand = "0.10.2"
2026-06-16 13:47:49 +02:00
[build-dependencies]
tonic-prost-build = "0.14.6"