[package] name = "nym-gateway" version = "0.9.0-dev" authors = ["Dave Hrycyszyn ", "Jędrzej Stuczyński "] 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" # using 4.0.0 release candidate as it's faster than 3.X and more importantly it resolves edge cases deadlocks dashmap = "4.0.0-rc6" dotenv = "0.15.0" futures = "0.3" humantime-serde = "1.0.1" log = "0.4" pretty_env_logger = "0.3" rand = "0.7" 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" # internal config = { path = "../common/config" } crypto = { path = "../common/crypto" } gateway-requests = { path = "gateway-requests" } mixnet-client = { path = "../common/client-libs/mixnet-client" } mixnode-common = { path = "../common/mixnode-common" } nymsphinx = { path = "../common/nymsphinx" } pemstore = { path = "../common/pemstore" } validator-client = { path = "../common/client-libs/validator-client" } version-checker = { path = "../common/version-checker" } [dependencies.tungstenite] version = "0.11" default-features = false