## [0.37.0](https://github.com/propeller-heads/tycho-execution/compare/0.36.2...0.37.0) (2025-02-12) ### Features * add callback ([ed90cb4](ed90cb4ef1)) * add new pair test ([7ca647f](7ca647f009)) * add router params ([e62c332](e62c332451)) * add test for UniswapV4Executor ([4599f07](4599f07df0)) * add univ4 executor ([cb4c8f4](cb4c8f4e51)) * handle amounts in unlockCallback ([b2097ca](b2097ca4a5)) * move encoding to test ([c264084](c264084783)) * support multi swap decoding ([d998c88](d998c88cfe)) * update solc and add V4Router into UniswapV4Executor ([bdd3daf](bdd3daffba)) ### Bug Fixes * _pay and msgSender ([d790682](d79068282a)) * add equality check, amountInOrOut check, update _decodeData ([b47cff3](b47cff3fc9)) * git submodules and strict equality check in v4 executor ([a8cc84d](a8cc84ddce)) * handle native token balance changes ([0c40e9e](0c40e9e979)) * reciever issue ([ae0b07b](ae0b07b2a4)) * remove executeActions wrapper, strict equality checks and rename swap return ([2371ab2](2371ab2a1f)) * remove extra _receiver and redundant asserts ([ff3209b](ff3209b1c8)) * rm callback fn ([1a36c33](1a36c33bc6)) * rm redundant transfer ([24d4e76](24d4e762a2))
40 lines
1.0 KiB
TOML
40 lines
1.0 KiB
TOML
[package]
|
|
name = "tycho-execution"
|
|
version = "0.37.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
|