## [0.35.0](https://github.com/propeller-heads/tycho-execution/compare/0.34.0...0.35.0) (2025-02-07) ### Features * Add clone to EVMTychoEncoder ([b333d60](b333d60d69)) * Add uniswap v3 to swap encoders list ([c791c93](c791c93cb5)) * Get current runtime if there is any ([12f85cc](12f85ccc0a)) * Increase tycho-core version ([6bbb6da](6bbb6da1cd)) * Make executors_file_path optional and use a default value if None ([4680a4b](4680a4be24)) * Read default executors at compile time into a json ([f5232f4](f5232f403e)) * Remove router_address from TychoEncoder ([a234ff7](a234ff701f)) * The execution structs should receiver tycho_core Chain ([cad9f39](cad9f394cd)) * Use block_in_place instead of block_on ([d4af59d](d4af59d4dc)) ### Bug Fixes * After rebase fixes ([bef4740](bef4740a1d)) * Change version of serde to match tycho-simulation ([3116fef](3116fef0d7)) * Don't have a DEFAULT_CONFIG_PATH in bin ([d7f20aa](d7f20aa74f)) * Uniswap v3 pool fee is big endian, not little endian ([0c9050c](0c9050cf79)) * **univ3:** The fee keyword is just "fee" and not "pool_fee" ([164d062](164d062ad9))
40 lines
1.0 KiB
TOML
40 lines
1.0 KiB
TOML
[package]
|
|
name = "tycho-execution"
|
|
version = "0.35.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "tycho-encode"
|
|
path = "src/bin/tycho-encode.rs"
|
|
required-features = ["evm"]
|
|
|
|
[dependencies]
|
|
dotenv = "0.15.0"
|
|
lazy_static = "1.4.0"
|
|
num-bigint = { version = "0.4.6", features = ["serde"] }
|
|
hex = "0.4.3"
|
|
num-traits = "0.2.19"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.105"
|
|
thiserror = "1.0.69"
|
|
tokio = { version = "1.38.0", features = ["full"] }
|
|
chrono = "0.4.39"
|
|
clap = { version = "4.5.3", features = ["derive"] }
|
|
|
|
alloy = { version = "0.9.2", 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.55.2" }
|
|
once_cell = "1.20.2"
|
|
|
|
[dev-dependencies]
|
|
rstest = "0.24.0"
|
|
|
|
[features]
|
|
default = ["evm"]
|
|
evm = ["alloy", "alloy-sol-types", "alloy-primitives"]
|
|
fork-tests = []
|
|
|
|
[profile.bench]
|
|
debug = true
|