mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 20:29:23 +00:00
27 lines
882 B
TOML
27 lines
882 B
TOML
[package]
|
|
name = "serai-processor-ethereum-primitives"
|
|
version = "0.1.0"
|
|
description = "Primitives for Serai's Ethereum Processor"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor/ethereum/primitives"
|
|
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]
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
|
|
|
group = { version = "0.13", default-features = false }
|
|
k256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic"] }
|
|
|
|
alloy-primitives = { version = "0.8", default-features = false }
|
|
alloy-consensus = { version = "0.9", default-features = false, features = ["k256"] }
|