feat: v0.1.0 init commit

This commit is contained in:
2022-08-21 01:05:48 +08:00
parent 82ddc6d8c8
commit 21c857bdf4
7 changed files with 1783 additions and 4 deletions

20
Cargo.toml Normal file
View File

@@ -0,0 +1,20 @@
[package]
name = "simple-rust-http3-proxy"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"] }
s2n-quic = "1.9"
clap = "2.33"
rust_util = "0.6"
[profile.release]
codegen-units = 1
opt-level = 'z'
lto = true
panic = 'abort'