43 lines
1.6 KiB
TOML
43 lines
1.6 KiB
TOML
# Copyright 2020 - Nym Technologies SA <contact@nymtech.net>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
[package]
|
|
name = "nym-network-requester"
|
|
version = "1.1.4"
|
|
authors = ["Dave Hrycyszyn <futurechimp@users.noreply.github.com>", "Jędrzej Stuczyński <andrew@nymtech.net>"]
|
|
edition = "2021"
|
|
rust-version = "1.65"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-trait = { version = "0.1.51" }
|
|
clap = {version = "3.2", features = ["derive"]}
|
|
dirs = "4.0"
|
|
futures = "0.3.24"
|
|
ipnetwork = "0.20.0"
|
|
log = "0.4.17"
|
|
pretty_env_logger = "0.4.0"
|
|
publicsuffix = "1.5" # Can't update this until bip updates to support newer idna version
|
|
rand = "0.7.3"
|
|
reqwest = { version = "0.11.11", features = ["json"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
sqlx = { version = "0.6.1", features = ["runtime-tokio-rustls", "chrono"]}
|
|
thiserror = "1.0"
|
|
tokio = { version = "1.21.2", features = [ "net", "rt-multi-thread", "macros" ] }
|
|
tokio-tungstenite = "0.17.2"
|
|
|
|
|
|
# internal
|
|
client-connections = { path = "../../common/client-connections" }
|
|
completions = { path = "../../common/completions" }
|
|
network-defaults = { path = "../../common/network-defaults" }
|
|
nymsphinx = { path = "../../common/nymsphinx" }
|
|
logging = { path = "../../common/logging"}
|
|
ordered-buffer = {path = "../../common/socks5/ordered-buffer"}
|
|
proxy-helpers = { path = "../../common/socks5/proxy-helpers" }
|
|
socks5-requests = { path = "../../common/socks5/requests" }
|
|
statistics-common = { path = "../../common/statistics" }
|
|
task = { path = "../../common/task" }
|
|
websocket-requests = { path = "../../clients/native/websocket-requests" }
|