fix(agent): add clap env feature, pin MSVC toolchain

- Added "env" feature to clap for env var support in CLI args
- Added rust-toolchain.toml to force MSVC target on Windows

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
claude 2026-02-18 23:11:52 +05:00
parent 1c316a8cd3
commit d158fcf520
2 changed files with 4 additions and 1 deletions

View File

@ -19,4 +19,4 @@ portable-pty = "0.8"
futures-util = "0.3"
url = "2"
native-tls = "0.2"
clap = { version = "4", features = ["derive"] }
clap = { version = "4", features = ["derive", "env"] }

View File

@ -0,0 +1,3 @@
[toolchain]
channel = "stable"
targets = ["x86_64-pc-windows-msvc"]