mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 04:09:23 +00:00
34 lines
898 B
TOML
34 lines
898 B
TOML
[package]
|
|
name = "serai-client"
|
|
version = "0.1.0"
|
|
description = "A client for Serai and its connected networks"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/client"
|
|
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]
|
|
serai-client-serai = { path = "./serai", optional = true }
|
|
|
|
serai-client-bitcoin = { path = "./bitcoin", optional = true }
|
|
serai-client-ethereum = { path = "./ethereum", optional = true }
|
|
serai-client-monero = { path = "./monero", optional = true }
|
|
|
|
[features]
|
|
serai = ["serai-client-serai"]
|
|
|
|
bitcoin = ["serai-client-bitcoin"]
|
|
ethereum = ["serai-client-ethereum"]
|
|
monero = ["serai-client-monero"]
|
|
|
|
default = ["serai", "bitcoin", "ethereum", "monero"]
|