0f7dbb94a8
* version fix * try to publish core crates first * bump version ci * fix to yaml * Slight modifications to ordering, remove core-crates and rely on ordering as test + sed tweak * crates release: bump version to 1.21.0 (#6744) Co-authored-by: Nym bot <nym-bot@users.noreply.github.com> Co-authored-by: mfahampshire <maxhampshire@pm.me> * Remove unnecessary verification step becase of dryrun (doubled) * Revert some changes to develop * Add preflight to its own workflow * Clippy * Update crate publishing file * Clippy --------- Co-authored-by: benedettadavico <benedettadavico@users.noreply.github.com> Co-authored-by: mfahampshire <maxhampshire@pm.me> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Nym bot <nym-bot@users.noreply.github.com>
45 lines
1.4 KiB
TOML
45 lines
1.4 KiB
TOML
[package]
|
|
name = "smolmix"
|
|
description = "Tunnel for TCP and UDP traffic to be sent over Nym mixnet to clearnet remote hosts"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition = "2021"
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
documentation.workspace = true
|
|
rust-version.workspace = true
|
|
readme.workspace = true
|
|
publish = true
|
|
|
|
[dependencies]
|
|
smoltcp = { workspace = true, features = [
|
|
"std",
|
|
"medium-ip",
|
|
"proto-ipv4",
|
|
"socket-tcp",
|
|
"socket-udp",
|
|
] }
|
|
tokio = { workspace = true }
|
|
tokio-smoltcp = { workspace = true }
|
|
futures = { workspace = true }
|
|
tracing = { workspace = true }
|
|
nym-sdk = { workspace = true }
|
|
nym-ip-packet-requests = { workspace = true }
|
|
thiserror.workspace = true
|
|
|
|
[dev-dependencies]
|
|
futures = { workspace = true }
|
|
tokio = { workspace = true, features = ["io-util", "macros", "rt-multi-thread", "time", "net"] }
|
|
tokio-tungstenite.workspace = true
|
|
webpki-roots.workspace = true
|
|
rustls = { workspace = true, features = ["std", "ring"] }
|
|
tokio-rustls = { workspace = true }
|
|
nym-bin-common = { workspace = true, features = ["basic_tracing"] }
|
|
hickory-proto = { workspace = true }
|
|
hickory-resolver = { workspace = true, features = ["tokio", "system-config"] }
|
|
hyper = { workspace = true, features = ["client", "http1"] }
|
|
hyper-util = { workspace = true, features = ["tokio"] }
|
|
http-body-util = { workspace = true }
|
|
reqwest = { workspace = true, features = ["rustls"] }
|