5fa1a3fc17
- move `LpTransport` trait definition to shared `nym-lp-transport` crate - make transport layer within `LpConnectionHandler` generic with respect to the forwarding target. it must, however, use the same type as the incoming client connection - extracted explicit `LpConnectionHandler::establish_exit_stream` to more easily modify it in the future to fully protect the channel and disallow using untrusted egress points - fix additional log-string interpolation nits
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "integration-tests"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tokio-util = { workspace = true }
|
|
nym-wireguard = { path = "../common/wireguard", features = ["mock"] }
|
|
nym-bandwidth-controller = { path = "../common/bandwidth-controller" }
|
|
nym-crypto = { path = "../common/crypto", features = ["asymmetric", "rand"] }
|
|
nym-credential-verification = { path = "../common/credential-verification" }
|
|
nym-credentials-interface = { path = "../common/credentials-interface" }
|
|
nym-test-utils = { path = "../common/test-utils" }
|
|
nym-registration-client = { path = "../nym-registration-client" }
|
|
nym-lp-transport = { path = "../common/nym-lp-transport", features = ["io-mocks"] }
|
|
nym-gateway = { path = "../gateway" }
|
|
sqlx = { workspace = true, features = ["runtime-tokio-rustls", "sqlite"] }
|
|
tracing = { workspace = true }
|
|
|
|
|
|
[lints]
|
|
workspace = true
|