## [0.115.0](https://github.com/propeller-heads/tycho-execution/compare/0.114.0...0.115.0) (2025-08-14) ### Features * Deploy BebopExecutor ([f9ef8e0](f9ef8e0dbd)) * implement encoder and executor with single order support ([7e7e3f0](7e7e3f0e01)) * support multi and aggregate orders ([ad0a999](ad0a9991da)) ### Bug Fixes * After merge fixes with SwapBuilder ([d301dfc](d301dfcc44)) * After merging main fixes ([003ab7c](003ab7cea8)) * **Bebop:** Fix AggregateOrder tests ([7024da3](7024da395d)) * **Bebop:** Fix encoding and tests ([e793478](e79347842f)) * cargo and forge fmt ([17e5354](17e535494b)) * Fix test imports ([210d4fa](210d4fa604)) * Move Bebop tests according to new setup ([01ab5d2](01ab5d22b1)) * SafeCast => V4SafeCast to fix build issue ([946c439](946c4391e8)) * Simplify the BebopExecutor and fix Single tests ([76a09d0](76a09d0402))
53 lines
1.4 KiB
TOML
53 lines
1.4 KiB
TOML
[package]
|
|
name = "tycho-execution"
|
|
version = "0.115.0"
|
|
edition = "2021"
|
|
description = "Provides tools for encoding and executing swaps against Tycho router and protocol executors."
|
|
repository = "https://github.com/propeller-heads/tycho-execution"
|
|
homepage = "https://www.propellerheads.xyz/tycho"
|
|
documentation = "https://docs.propellerheads.xyz/tycho"
|
|
keywords = ["propellerheads", "solver", "defi", "dex", "mev"]
|
|
license = "MIT"
|
|
categories = ["finance", "cryptography::cryptocurrencies"]
|
|
readme = "README.md"
|
|
exclude = [
|
|
"foundry/*",
|
|
"foundry",
|
|
"tests/*",
|
|
"tests/common",
|
|
".github/*",
|
|
".gitmodules",
|
|
]
|
|
|
|
[[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"] }
|
|
once_cell = "1.20.2"
|
|
tycho-common = ">0.78.1"
|
|
|
|
alloy = { version = "1.0.6", features = ["providers", "rpc-types-eth", "eip712", "signer-local", "node-bindings"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
rstest = "0.24.0"
|
|
|
|
[features]
|
|
default = ["evm"]
|
|
evm = ["alloy"]
|
|
fork-tests = []
|
|
|
|
[profile.bench]
|
|
debug = true |