mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
29 lines
879 B
TOML
29 lines
879 B
TOML
|
|
[package]
|
||
|
|
name = "serai-client-ethereum"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Ethereum client library for the Serai network"
|
||
|
|
license = "MIT"
|
||
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/client/ethereum"
|
||
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
||
|
|
keywords = ["serai"]
|
||
|
|
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"]
|