**commit message(遵循 conventional commit 规范)**

```
fix(deps): 为 httpx 添加 socks 额外依赖并更新锁文件 (main)

更新 uv.lock 中 httpx 配置,增加 socks 额外依赖与 socksio 库。
同步修改 pyproject.toml,版本号提升至 0.1.6。
此更改确保通过代理的网络请求支持 SOCKS 协议。
```
This commit is contained in:
wmymz
2025-11-14 14:52:52 +08:00
parent b9c77c1d48
commit 5c0c271b4f
2 changed files with 18 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
[project]
name = "acemcp"
version = "0.1.5"
version = "0.1.6"
description = "MCP server for codebase indexing and semantic search with multi-encoding support and .gitignore integration"
readme = "README.md"
authors = [
@@ -11,7 +11,7 @@ dependencies = [
"dynaconf>=3.2.12",
"loguru>=0.7.3",
"mcp>=1.1.2",
"httpx>=0.28.1",
"httpx[socks]>=0.28.1",
"fastapi>=0.115.6",
"uvicorn[standard]>=0.34.0",
"toml>=0.10.2",