Files
rust-work/INDEX.md
绝尘 11203f036f 新增: MySQL/SSH 代理工具
- mysql-proxy: MySQL HTTP 代理,连接池复用
- ssh-proxy: SSH HTTP 代理,会话复用
- mysql-cli: 轻量级 MySQL CLI 工具

功能特性:
- 延迟初始化,启动快
- CLI 和 HTTP API 双模式
- 请求日志支持
- 错误友好提示
- JSON 极简输出格式
2026-03-19 14:03:12 +08:00

26 lines
525 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Rust Work 索引
> 更新2026-03-18
## 项目列表
| 项目 | 端口 | 说明 |
|------|------|------|
| [mysql-proxy](mysql-proxy) | 3307 | MySQL 会话复用代理 |
| [ssh-proxy](ssh-proxy) | 3308 | SSH 会话复用代理 |
| [mysql-cli](mysql-cli) | - | MySQL CLI 工具 (开发中) |
## 孵化记录
- [INCUBATOR.md](INCUBATOR.md) - 问题/性能/建议
## 快速启动
```bash
# mysql-proxy
cd mysql-proxy && ./target/release/mysql-proxy.exe
# ssh-proxy
cd ssh-proxy && ./target/release/ssh-proxy.exe
```