Files
serai/substrate/client/ethereum/Cargo.toml
2025-11-06 03:08:43 -05:00

29 lines
901 B
TOML

[package]
name = "serai-client-ethereum"
version = "0.1.0"
description = "A client for the Serai network's Ethereum functionality"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/client/ethereum"
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
keywords = ["serai", "ethereum"]
edition = "2021"
rust-version = "1.85"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[lints]
workspace = true
[dependencies]
std-shims = { path = "../../../common/std-shims", default-features = false, features = ["alloc"] }
hex = { version = "0.4", default-features = false, features = ["alloc"] }
borsh = { version = "1", default-features = false, features = ["derive"] }
serai-primitives = { path = "../../primitives", default-features = false, version = "0.1" }
[features]
std = ["std-shims/std", "borsh/std", "serai-primitives/std"]