95ec91daa1
* Create credential verifier in authenticator * Add new version of peer storage with client id * Fix v1 to what it was before * Compact storage into ecash verifier * Fix non-linux build * Less overlapping conditions * Remove moved code * Use handler thread for each peer * Re-spawn stored handles at startup * Keep new function without async & Result * Put query peer in function too * Query bandwidth * Fix clippy * Replace tap with inspect_err * Fix copyright year * Handle version 2 on the reqeust deser * Add protocol type in req/resp messages
27 lines
739 B
TOML
27 lines
739 B
TOML
[package]
|
|
name = "nym-wireguard-types"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
base64 = { workspace = true }
|
|
log = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
|
|
nym-config = { path = "../config" }
|
|
nym-network-defaults = { path = "../network-defaults" }
|
|
|
|
x25519-dalek = { workspace = true, features = ["static_secrets"] }
|
|
|
|
[dev-dependencies]
|
|
rand = { workspace = true }
|
|
nym-crypto = { path = "../crypto", features = ["rand"] }
|