Files
tycho-protocol-sdk/protocol-testing/Cargo.toml
TAMARA LIPOWSKI 742948cdf5 feat: Fix tycho-common and -client dependencies
- These should match what we currently have in simulation and execution.
- Also nightly fmt
2025-09-03 08:55:29 -04:00

30 lines
893 B
TOML

[package]
name = "protocol-testing"
version = "0.1.0"
edition = "2021"
[dependencies]
miette = "7.6.0"
# Logging & Tracing
tracing = "0.1.37"
# Tycho dependencies
tycho-common = "0.82.0"
tycho-client = "0.82.0"
# TODO make this less hacky. We should probably try to build this in a similar way that the indexer is built
tycho-simulation = { path = "../../tycho-simulation", features = ["evm"] }
# EVM dependencies
alloy = { version = "1.0.27", features = ["arbitrary", "json", "dyn-abi", "sol-types", "contract", "provider-http"] }
tokio = { version = "1", features = ["full"] }
serde_json = "1.0.140"
clap = "4.5.31"
figment = { version = "0.10.19", features = ["yaml"] }
serde = { version = "1.0.218", features = ["derive"] }
hex = "0.4.3"
tracing-subscriber = "0.3.19"
postgres = "0.19.10"
serde_yaml = "0.9.34"
dotenv = "0.15.0"
async-trait = "0.1.87"
colored = "3.0.0"
similar = "2.7.0"