Skip to content

Latest commit

 

History

History
47 lines (35 loc) · 670 Bytes

File metadata and controls

47 lines (35 loc) · 670 Bytes

贡献指南

开发环境

# 克隆
git clone https://github.com/YOUR_USERNAME/socks5-proxy.git
cd socks5-proxy

# 构建
cargo build

# 测试
cargo test

# 格式化
cargo fmt

# Lint
cargo clippy

提交代码

  1. Fork 仓库
  2. 创建分支: git checkout -b feature/xxx
  3. 提交更改: git commit -m "feat: add xxx"
  4. 推送: git push origin feature/xxx
  5. 创建 Pull Request

Commit 规范

feat: 新功能
fix: 修复 bug
docs: 文档更新
refactor: 重构
test: 测试
chore: 构建/工具

PR 检查清单

  • cargo test 通过
  • cargo fmt 格式化
  • cargo clippy 无警告
  • 更新相关文档