Skip to content

Commit

Permalink
refactor & roundezvous server
Browse files Browse the repository at this point in the history
  • Loading branch information
maxomatic458 committed Aug 21, 2024
1 parent c2c0400 commit af3ad93
Show file tree
Hide file tree
Showing 13 changed files with 2,316 additions and 278 deletions.
467 changes: 212 additions & 255 deletions Cargo.lock

Large diffs are not rendered by default.

36 changes: 13 additions & 23 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,35 +1,25 @@
[package]
name = "quic-send"
version = "2.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"qs-core",
"qs-cli",
"qs-roundezvous"
]

[dependencies]
bincode = "=2.0.0-rc.3"
clap = { version = "4.5.16", features = ["derive"] }
hex = "0.4.3"
rcgen = "0.13.1"
tokio = { version = "1.39.3", features = ["full"] }
walkdir = "2.5.0"
indicatif = "0.17.8"
dialoguer = "0.11.0"
color-eyre = "0.6.3"
async-compression = { version = "0.4.12", features = ["tokio", "gzip"] }
resolver = "2"

[workspace.dependencies]
quinn = { version = "0.11.3", features = ["runtime-tokio"] }
stunclient = "0.4.0"
rustls = { version = "0.23.12", default-features = false, features = ["ring"] }
rcgen = "0.13.1"
bincode = "=2.0.0-rc.3"
tokio = { version = "1.37.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
thiserror = "1.0.63"
async-recursion = "1.1.1"
pretty_assertions = "1.4.0"
iter_tools = "0.20.0"
rand = "0.8.5"

[profile.release]
lto = true
codegen-units = 1
strip = "debuginfo"

[[bin]]
path = "src/main.rs"
name = "qs"
20 changes: 20 additions & 0 deletions qs-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[package]
name = "qs-cli"
version = "0.2.1"
edition = "2021"

[dependencies]
thiserror = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
quinn = { workspace = true }
qs-core = { path = "../qs-core" }
async-compression = { version = "0.4.12", features = ["tokio", "gzip"] }
clap = { version = "4.5.16", features = ["derive"] }
indicatif = "0.17.8"
dialoguer = "0.11.0"

[[bin]]
path = "src/main.rs"
name = "qs"
Loading

0 comments on commit af3ad93

Please sign in to comment.