Files
serai/processor/ethereum/erc20/Cargo.toml

32 lines
1.0 KiB
TOML
Raw Normal View History

2024-09-16 21:59:12 -04:00
[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"
2024-09-16 21:59:12 -04:00
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lints]
workspace = true
[dependencies]
alloy-core = { version = "1", default-features = false }
2024-09-16 21:59:12 -04:00
alloy-sol-types = { version = "1", default-features = false }
alloy-sol-macro = { version = "1", default-features = false }
2024-09-16 21:59:12 -04:00
2025-08-25 09:17:29 -04:00
alloy-rpc-types-eth = { version = "1", default-features = false }
alloy-transport = { version = "1", default-features = false }
alloy-provider = { version = "1", default-features = false }
ethereum-primitives = { package = "serai-processor-ethereum-primitives", path = "../primitives", default-features = false }
futures-util = { version = "0.3", default-features = false, features = ["std"] }