16 lines
458 B
TOML
16 lines
458 B
TOML
[package]
|
|
name = "eth-proxy"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
argh = "0.1"
|
|
anyhow = "1.0"
|
|
futures = { version = "0.3.0", features = ["thread-pool"]}
|
|
tokio = { version = "1", features = ["full"] }
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
|
|
warp = "0.3"
|