Easy-to-use TUI & CLI to interact with Clash RESTful API.
```bash $ clashctl proxy list
selector - All
URLTest - Auto-All
ShadowsocksR 19 SomeProxy-1
Vmess 177 SomeProxy-2
Vmess 137 SomeProxy-3
Shadowsocks 143 SomeProxy-4
```
bash
$ cargo install clashctl
bash
$ git clone https://github.com/George-Miao/clashctl.git
$ cd clashctl
$ cargo install --features cli --path .
You will need rust environment (Cargo & rustc) to compile and install
Minimum supported rust version is 1.56.0
Test with cargo-msrv
``` clashctl
George Miao gm@miao.dev
CLI used to interact with Clash RESTful API
USAGE:
clashctl [OPTIONS]
OPTIONS:
-c, --config
SUBCOMMANDS: completion Generate auto-completion scripts help Print this message or the help of the given subcommand(s) proxy Interacting with proxies server Interacting with servers ```
```toml
[dependencies] clashctl = "*" ```
Then in your project:
```rust use clashctl::Clash;
fn test() { let clash = Clash::builder("http://example.com:9090").unwrap().build(); println!("Clash version is {:?}", clash.get_version().unwrap()) } ```