mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
Completes the `Executed` enum in the router. Adds an `Escape` struct. Both are needed for testing purposes. Documents the gas constants in intent and reasoning. Adds modernized tests around key rotation and the escape hatch. Also updates the rest of the codebase which had accumulated errors.
34 lines
1.3 KiB
TOML
34 lines
1.3 KiB
TOML
[package]
|
|
name = "serai-processor-ethereum-erc20"
|
|
version = "0.1.0"
|
|
description = "A library for the Serai Processor to interact with ERC20s"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor/ethereum/erc20"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
publish = false
|
|
rust-version = "1.81"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
alloy-core = { version = "0.8", default-features = false }
|
|
|
|
alloy-sol-types = { version = "0.8", default-features = false }
|
|
alloy-sol-macro = { version = "0.8", default-features = false }
|
|
|
|
alloy-rpc-types-eth = { version = "0.9", default-features = false }
|
|
alloy-transport = { version = "0.9", default-features = false }
|
|
alloy-simple-request-transport = { path = "../../../networks/ethereum/alloy-simple-request-transport", default-features = false }
|
|
alloy-provider = { version = "0.9", default-features = false }
|
|
|
|
ethereum-primitives = { package = "serai-processor-ethereum-primitives", path = "../primitives", default-features = false }
|
|
|
|
# TODO futures-util = { version = "0.3", default-features = false, features = ["std"] }
|
|
tokio = { version = "1", default-features = false, features = ["rt"] }
|