snp-daemon/Cargo.toml

41 lines
1.0 KiB
TOML

# SPDX-License-Identifier: Apache-2.0
[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 = { version = "0.12", features = ["tls"] }
serde_json = "1.0.135"
bs58 = "0.5.1"
chrono = "0.4.39"
# TODO: switch this back to main after the upgrade
detee-shared = { git = "ssh://git@gitea.detee.cloud/testnet/proto", branch = "remove_uuid" }
# detee-shared = { path = "../detee-shared" }
[build-dependencies]
tonic-build = "0.12"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true