forked from kcolbchain/arbitrum-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 763 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (24 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "arbitrum-cli"
version = "0.1.0"
edition = "2021"
description = "Agent-first Arbitrum CLI. JSON in/out, MCP-compatible, single binary."
license = "MIT"
repository = "https://github.com/kcolbchain/arbitrum-cli"
homepage = "https://kcolbchain.com"
authors = ["kcolbchain <krishna@kcolbchain.com>"]
keywords = ["arbitrum", "cli", "agent", "blockchain", "rust"]
categories = ["command-line-utilities"]
readme = "README.md"
[[bin]]
name = "arbitrum-cli"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
eyre = "0.6"
colored = "2"
hex = "0.4"