41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
build = "build.rs"
|
|
name = "nym-gateway"
|
|
version = "0.8.0"
|
|
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>", "Jędrzej Stuczyński <andrew@nymtech.net>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
clap = "2.33.0"
|
|
dirs = "2.0.2"
|
|
dotenv = "0.15.0"
|
|
futures = "0.3"
|
|
log = "0.4"
|
|
pretty_env_logger = "0.3"
|
|
rand = "0.7.2"
|
|
serde = { version = "1.0.104", features = ["derive"] }
|
|
sled = "0.31"
|
|
tokio = { version = "0.2", features = ["full"] }
|
|
tokio-util = { version = "0.3.1", features = ["codec"] }
|
|
tokio-tungstenite = "0.11.0"
|
|
|
|
# internal
|
|
config = { path = "../common/config" }
|
|
crypto = { path = "../common/crypto" }
|
|
directory-client = { path = "../common/client-libs/directory-client" }
|
|
gateway-requests = { path = "gateway-requests" }
|
|
mixnet-client = { path = "../common/client-libs/mixnet-client" }
|
|
nymsphinx = { path = "../common/nymsphinx" }
|
|
pemstore = { path = "../common/pemstore" }
|
|
|
|
[dependencies.tungstenite]
|
|
version = "0.10.0"
|
|
default-features = false
|
|
|
|
[build-dependencies]
|
|
built = "0.4.3"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.1.0" |