31 lines
955 B
TOML
31 lines
955 B
TOML
[package]
|
|
name = "nym-verloc"
|
|
description = "Nym's verloc (Verifiable Location) implementation"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
|
|
[dependencies]
|
|
bytes = { workspace = true }
|
|
futures = { workspace = true }
|
|
humantime = { workspace = true }
|
|
tracing = { workspace = true }
|
|
time = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync", "net", "rt-multi-thread", "io-util"] }
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
thiserror = { workspace = true }
|
|
rand = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
nym-crypto = { workspace = true, features = ["asymmetric"] }
|
|
nym-task = { workspace = true }
|
|
nym-validator-client = { workspace = true }
|
|
nym-http-api-client = { workspace = true }
|
|
nym-api-requests = { workspace = true }
|