25 lines
655 B
TOML
25 lines
655 B
TOML
|
[package]
|
||
|
name = "vanity-worker"
|
||
|
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"] }
|
||
|
|
||
|
libvanity = {path = "../libvanity"}
|
||
|
|
||
|
x25519-dalek = "1.2.0"
|
||
|
rand_core = {version = "0.5.1", features = ["getrandom"]}
|
||
|
|
||
|
tonic = "0.8"
|
||
|
tokio = {version = "1", features = ["full"]}
|
||
|
tokio-stream = { version = "0.1.11", features = ["net"] }
|
||
|
|
||
|
base64 = "0.13.0"
|
||
|
regex = "1.6.0"
|
||
|
tracing-subscriber = { version = "0.3.16", features = ["json"] }
|
||
|
tracing = { version = "0.1.37", features = ["log"] }
|
||
|
futures = "0.3.25"
|