## [0.21.0](https://github.com/propeller-heads/tycho-execution/compare/0.20.0...0.21.0) (2025-01-28) ### Features * add balancer v2 executor ([a700189](a700189aaf)) * add node.js workflow ([25756ff](25756fffdd)) * add tests for Balancer V2 executor ([a4e405f](a4e405fb75)) * approve max ([cb6d165](cb6d165e7f)) * update remappings and remove node modules ([b65b682](b65b682e8d)) ### Bug Fixes * balancer v2 encoder bug ([a6a624b](a6a624b740)) * build ([5dc5e23](5dc5e23239)) * ci ([b1ca478](b1ca478294)) * clippy ([877f625](877f625efc)) * exclude node modules from slither ([4b3c5c5](4b3c5c5005)) * filter paths slither ([6c30cf8](6c30cf8f66)) * rm exactOut ([44db2e5](44db2e52b3)) * slither ([b854282](b85428212a)) * slither ([7a83edd](7a83eddc92))
33 lines
873 B
TOML
33 lines
873 B
TOML
[package]
|
|
name = "tycho-execution"
|
|
version = "0.21.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
|