22 lines
597 B
TOML
22 lines
597 B
TOML
|
[package]
|
||
|
name = "vanityd"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
clap = { version = "4", features = ["derive", "env", "cargo"] }
|
||
|
|
||
|
tonic = "0.8"
|
||
|
tokio = {version = "1", features = ["full"]}
|
||
|
tokio-stream = { version = "0.1.11", features = ["net"] }
|
||
|
|
||
|
futures = "0.3.25"
|
||
|
|
||
|
redis = { version = "0.22", features = ["aio", "tokio-comp"] }
|
||
|
|
||
|
libvanity = {path = "../libvanity"}
|
||
|
tracing-subscriber = { version = "0.3.16", features = ["json"] }
|
||
|
tracing = { version = "0.1.37", features = ["log"] }
|