d05b313a99
* Feature/wasm update (#341) * Split text and binary client apis * Very initial attempt at new serialization * Defined ser+de for Recipient and ReplySURB * Response errors * builds with changes * Working WS API + moved to separate crate * updated python examples * Fixed parsing bug * Updated go examples * Updated rust examples * formatting * Removed unused imports * dependency updates * Further dependency changes * nymsphinx exposingn framing only if not in wasm32 * Cargo lock changes before develop merge * Pending work * Actually sending and receiving websocket from rust! * more WIP * Initial wasm client + establishing shared key with gateway! * Splitting and sending a message! * WIP * WIP * Initial wasm-ification of the gateway client * Passing reconstruction result to js callback! * Initial WASM cleaning pass * Dependency pruning * Moved processing loop to received_processor + at least ack unwrappingn * Post merge fix * Kinda updated react example * Old print statement removed * Removed yarn.lock * Fixed building issue for other clients * Fixed travis test command * Updated wasm publishing instructions * Increased default presence and metrics sending interval (#354) * Defaulting to mix layer with fewest node if no argument provided (#353) * Defaulting to mix layer with fewest node if no argument provided * cargo fmt * Selecting the gateway randomly from 2 known good ones. (#355) * Selecting the gateway randomly from 2 known good ones. There's a problem with the config file in this commit though. * Saving value of chosen gateway * Removed duplicate printing of gateway being used Co-authored-by: jstuczyn <jedrzej.stuczynski@gmail.com> * More detailed error response on authentication/registration failure (#356) * Updated changelog * Updated version numbers Co-authored-by: Dave Hrycyszyn <futurechimp@users.noreply.github.com>
36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
TOML
[package]
|
|
build = "build.rs"
|
|
name = "nym-mixnode"
|
|
version = "0.8.1"
|
|
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]
|
|
bs58 = "0.3.0"
|
|
clap = "2.33.0"
|
|
curve25519-dalek = "2.0.0"
|
|
dirs = "2.0.2"
|
|
dotenv = "0.15.0"
|
|
futures = "0.3.1"
|
|
log = "0.4"
|
|
pretty_env_logger = "0.3"
|
|
serde = { version = "1.0.104", features = ["derive"] }
|
|
tokio = { version = "0.2", features = ["full"] }
|
|
tokio-util = { version = "0.3.1", features = ["codec"] }
|
|
|
|
## internal
|
|
config = {path = "../common/config"}
|
|
crypto = {path = "../common/crypto"}
|
|
directory-client = { path = "../common/client-libs/directory-client" }
|
|
mixnet-client = { path = "../common/client-libs/mixnet-client" }
|
|
nymsphinx = {path = "../common/nymsphinx" }
|
|
pemstore = {path = "../common/pemstore"}
|
|
topology = {path = "../common/topology"}
|
|
|
|
[build-dependencies]
|
|
built = "0.4.3"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.1.0" |