2024-09-05 02:39:41 +00:00
|
|
|
[package]
|
|
|
|
name = "serai-ethereum-processor"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Serai Ethereum Processor"
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor/ethereum"
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
keywords = []
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-09-14 09:20:02 +00:00
|
|
|
rand_core = { version = "0.6", default-features = false }
|
|
|
|
|
2024-09-14 11:54:18 +00:00
|
|
|
const-hex = { version = "1", default-features = false, features = ["std"] }
|
2024-09-05 02:39:41 +00:00
|
|
|
hex = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["std"] }
|
|
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
2024-09-14 09:20:02 +00:00
|
|
|
|
|
|
|
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["std", "secp256k1"] }
|
|
|
|
dkg = { path = "../../crypto/dkg", default-features = false, features = ["std", "evrf-secp256k1"] }
|
2024-09-18 04:54:20 +00:00
|
|
|
frost = { package = "modular-frost", path = "../../crypto/frost", default-features = false, features = ["secp256k1"] }
|
2024-09-05 02:39:41 +00:00
|
|
|
|
|
|
|
k256 = { version = "^0.13.1", default-features = false, features = ["std"] }
|
2024-09-18 04:54:20 +00:00
|
|
|
|
|
|
|
alloy-core = { version = "0.8", default-features = false }
|
|
|
|
alloy-rlp = { version = "0.3", default-features = false }
|
|
|
|
|
|
|
|
alloy-rpc-types-eth = { version = "0.3", default-features = false }
|
2024-09-18 19:50:21 +00:00
|
|
|
alloy-transport = { version = "0.3", default-features = false }
|
2024-09-18 04:54:20 +00:00
|
|
|
alloy-simple-request-transport = { path = "../../networks/ethereum/alloy-simple-request-transport", default-features = false }
|
|
|
|
alloy-rpc-client = { version = "0.3", default-features = false }
|
|
|
|
alloy-provider = { version = "0.3", default-features = false }
|
2024-09-05 02:39:41 +00:00
|
|
|
|
2024-09-14 11:54:18 +00:00
|
|
|
serai-client = { path = "../../substrate/client", default-features = false, features = ["ethereum"] }
|
2024-09-14 09:20:02 +00:00
|
|
|
|
|
|
|
zalloc = { path = "../../common/zalloc" }
|
2024-09-05 02:39:41 +00:00
|
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "sync", "time", "macros"] }
|
|
|
|
|
2024-09-14 11:54:18 +00:00
|
|
|
serai-env = { path = "../../common/env" }
|
2024-09-05 02:39:41 +00:00
|
|
|
serai-db = { path = "../../common/db" }
|
|
|
|
|
2024-09-19 05:31:52 +00:00
|
|
|
messages = { package = "serai-processor-messages", path = "../messages" }
|
2024-09-14 09:20:02 +00:00
|
|
|
key-gen = { package = "serai-processor-key-gen", path = "../key-gen" }
|
|
|
|
|
|
|
|
primitives = { package = "serai-processor-primitives", path = "../primitives" }
|
|
|
|
scheduler = { package = "serai-processor-scheduler-primitives", path = "../scheduler/primitives" }
|
|
|
|
scanner = { package = "serai-processor-scanner", path = "../scanner" }
|
|
|
|
smart-contract-scheduler = { package = "serai-processor-smart-contract-scheduler", path = "../scheduler/smart-contract" }
|
|
|
|
signers = { package = "serai-processor-signers", path = "../signers" }
|
2024-09-05 02:39:41 +00:00
|
|
|
|
2024-09-18 04:54:20 +00:00
|
|
|
ethereum-schnorr = { package = "ethereum-schnorr-contract", path = "../../networks/ethereum/schnorr" }
|
|
|
|
ethereum-primitives = { package = "serai-processor-ethereum-primitives", path = "./primitives" }
|
|
|
|
ethereum-router = { package = "serai-processor-ethereum-router", path = "./router" }
|
|
|
|
ethereum-erc20 = { package = "serai-processor-ethereum-erc20", path = "./erc20" }
|
|
|
|
|
2024-09-14 09:20:02 +00:00
|
|
|
bin = { package = "serai-processor-bin", path = "../bin" }
|
2024-09-05 02:39:41 +00:00
|
|
|
|
|
|
|
[features]
|
2024-09-14 09:20:02 +00:00
|
|
|
parity-db = ["bin/parity-db"]
|
|
|
|
rocksdb = ["bin/rocksdb"]
|