18 lines
676 B
TOML
18 lines
676 B
TOML
|
[package]
|
||
|
name = "web3-proxy-frontend"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
axum = "*"
|
||
|
console-subscriber = { version = "0.1.5", features = ["parking_lot"] }
|
||
|
hashbrown = "0.12.1"
|
||
|
serde = { version = "1.0.137", features = [] }
|
||
|
serde_json = { version = "1.0.81", default-features = false, features = ["alloc", "raw_value"] }
|
||
|
tokio = { version = "1.18.2", features = ["full", "tracing"] }
|
||
|
tracing = "0.1.34"
|
||
|
# TODO: tracing-subscriber has serde and serde_json features that we might want to use
|
||
|
tracing-subscriber = { version = "0.3.11", features = ["parking_lot"] }
|