17 lines
366 B
TOML
17 lines
366 B
TOML
[package]
|
|
name = "nex-account"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
prost = "0.14.3"
|
|
tonic-prost = "*"
|
|
tonic = "0.14.6"
|
|
tokio = { version = "1.52.3", features = ["macros", "rt-multi-thread"] }
|
|
sqlx = { version = "0.9.0", features = ["postgres", "runtime-tokio"] }
|
|
log = "0.4.32"
|
|
simplelog = "0.12.2"
|
|
|
|
[build-dependencies]
|
|
tonic-prost-build = "0.14.6"
|
|
|