28 lines
705 B
TOML
28 lines
705 B
TOML
[package]
|
|
name = "detee-snp-daemon"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
ed25519-dalek = { version = "2.1.1", features = [ "rand_core" ] }
|
|
rand_core = { version = "0.6.4", features = ["alloc", "getrandom", "std"] }
|
|
anyhow = "1.0.94"
|
|
env_logger = "0.11.6"
|
|
log = "0.4.22"
|
|
reqwest = { version = "0.12.9", features = ["blocking"] }
|
|
serde = { version = "1.0.215", features = ["derive"] }
|
|
serde_yaml = "0.9.34"
|
|
sha2 = "0.10.8"
|
|
lazy_static = "1.5.0"
|
|
prost = "0.13.4"
|
|
prost-types = "0.13.4"
|
|
rand = "0.8.5"
|
|
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
|
|
tokio-stream = "0.1.17"
|
|
tonic = "0.12"
|
|
serde_json = "1.0.135"
|
|
bs58 = "0.5.1"
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.12"
|