## [0.34.0](https://github.com/propeller-heads/tycho-execution/compare/0.33.0...0.34.0) (2025-02-06) ### Features * add default private key ([d3ad0ba](d3ad0ba5bf)) * add encoder bin ([4f7fe3b](4f7fe3b96d)) * add md ([d3be9d1](d3be9d1489)) * add serde primitive, update command ([b938560](b93856073c)) * default native action ([80f1ca9](80f1ca913b)) * remove direct execution hardcode ([ae6b1ed](ae6b1ed658)) * remove manual parsing ([fd4045e](fd4045e6fe)) * simplify ([8d97f73](8d97f73ec7)) * update cli params and docs ([32c3bd2](32c3bd2220)) * use clap for cli and resolve pr comments ([a5166f2](a5166f282d)) ### Bug Fixes * chain.into() ([520bee5](520bee5a5d)) * ci ([a3cf443](a3cf443056)) * ci ([6cec83f](6cec83fde5)) * fmt ([3bb5b0c](3bb5b0c7c6)) * fmt ([7df1995](7df1995655)) * remove redundant parse checks ([c4f9fd0](c4f9fd0fa6)) * rm v4-core ([1dad36d](1dad36d7a8))
40 lines
1.0 KiB
TOML
40 lines
1.0 KiB
TOML
[package]
|
|
name = "tycho-execution"
|
|
version = "0.34.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.217", features = ["derive"] }
|
|
serde_json = "1.0.135"
|
|
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.46.0" }
|
|
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
|