## [0.23.0](https://github.com/propeller-heads/tycho-execution/compare/0.22.0...0.23.0) (2025-01-30) ### Features * add executor encoder test ([ad70a0d](ad70a0d5a8)) * add swap test with hex for univ2 executor ([0196767](0196767eff)) * add univ2 executor test with hex ([c482e21](c482e21a5f)) * remove exact_out from USV2 ([8cb95f0](8cb95f0950)) * resolve pr comments ([1b8bf56](1b8bf56c75)) * update ExecutorEncoder interface and relevant types ([5c39651](5c396512cf))
33 lines
873 B
TOML
33 lines
873 B
TOML
[package]
|
|
name = "tycho-execution"
|
|
version = "0.23.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
dotenv = "0.15.0"
|
|
lazy_static = "1.4.0"
|
|
num-bigint = "0.4.6"
|
|
hex = "0.4.3"
|
|
num-traits = "0.2.19"
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
|
serde_json = "1.0.135"
|
|
thiserror = "1.0.69"
|
|
tokio = { version = "1.38.0", features = ["full"] }
|
|
chrono = "0.4.39"
|
|
|
|
alloy = { version = "0.5.4", features = ["providers", "rpc-types-eth", "eip712", "signer-local"], optional = true }
|
|
alloy-sol-types = { version = "0.8.14", optional = true }
|
|
alloy-primitives = { version = "0.8.9", optional = true }
|
|
tycho-core = { git = "https://github.com/propeller-heads/tycho-indexer.git", package = "tycho-core", tag = "0.46.0" }
|
|
|
|
[dev-dependencies]
|
|
rstest = "0.24.0"
|
|
|
|
[features]
|
|
default = ["evm"]
|
|
evm = ["alloy", "alloy-sol-types", "alloy-primitives"]
|
|
fork-tests = []
|
|
|
|
[profile.bench]
|
|
debug = true
|