-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (43 loc) · 1.1 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (43 loc) · 1.1 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "eth-mcp"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "server"
path = "src/main.rs"
[[bin]]
name = "client"
path = "src/bin/client.rs"
[[bin]]
name = "test_eth_balance"
path = "src/bin/test_eth_balance.rs"
[[bin]]
name = "test_erc20_balance"
path = "src/bin/test_erc20_balance.rs"
[[bin]]
name = "test_token_price"
path = "src/bin/test_token_price.rs"
[[bin]]
name = "test_swap"
path = "src/bin/test_swap.rs"
[dependencies]
tokio = { version = "1.49", features = ["full", "net"] }
rmcp = { version = "0.17.0", features = ["server", "client", "transport-child-process"] }
ethers = "2.0"
# ABI encoding/decoding
ethabi = "18.0"
# JSON serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Schema generation for JSON (must match rmcp's version)
schemars = "1.2"
# Structured logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
rust_decimal = { version = "1.41", features = ["serde-float"] }
anyhow = "1.0"
thiserror = "2.0"
dotenv = "0.15"
hex = "0.4"
async-trait = "0.1"
reqwest = { version = "0.13", features = ["json"] }