## [1.0.1](https://github.com/propeller-heads/tycho-execution/compare/1.0.0...1.0.1) (2025-04-23) ### Bug Fixes * Changes after rebase ([d39a2ac](d39a2accce)) * Configurable fee on USV2 executor. ([826aa54](826aa54631)) * Tighten max feeBps in USV2 executor ([e07573b](e07573bbb8))
48 lines
1.4 KiB
TOML
48 lines
1.4 KiB
TOML
[package]
|
|
name = "tycho-execution"
|
|
version = "1.0.1"
|
|
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"
|
|
|
|
[[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-common = "^0.66.4"
|
|
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
|