Skip to content

Commit 81a0126

Browse files
committed
feat: implement core functionality of ss-proxy server
- Implement HTTP/HTTPS and WebSocket dual-protocol proxy - Add SQLite session management and database integration - Support CLI arguments and environment variable configuration - Add request routing, health check and other handlers - Complete project documentation and translate code comments to English - Configure Rust 1.90.0 toolchain Signed-off-by: Xin Liu <[email protected]>
1 parent 20dab97 commit 81a0126

File tree

15 files changed

+4221
-44
lines changed

15 files changed

+4221
-44
lines changed

.cargo/config.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[build]
2+
incremental = true
3+
# jobs = 4
4+
5+
[env]
6+
RUST_LOG = "info"
7+
8+
[profile.dev]
9+
incremental = true
10+
opt-level = 0
11+
12+
[profile.release]
13+
opt-level = 3
14+
lto = true
15+
strip = true
16+
codegen-units = 1

0 commit comments

Comments
 (0)