Files
serai/substrate/genesis-liquidity/Cargo.toml

69 lines
1.8 KiB
TOML
Raw Normal View History

[package]
name = "serai-genesis-liquidity-pallet"
version = "0.1.0"
2025-12-02 16:24:17 -05:00
description = "Genesis Liquidity pallet for Serai"
license = "AGPL-3.0-only"
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/genesis-liquidity"
2025-12-02 16:24:17 -05:00
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
edition = "2021"
rust-version = "1.85"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[package.metadata.cargo-machete]
ignored = ["scale"]
[lints]
workspace = true
[dependencies]
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
sp-core = { git = "https://github.com/serai-dex/patch-polkadot-sdk", default-features = false }
2025-12-02 16:24:17 -05:00
frame-system = { git = "https://github.com/serai-dex/patch-polkadot-sdk", default-features = false }
frame-support = { git = "https://github.com/serai-dex/patch-polkadot-sdk", default-features = false }
2025-12-02 16:24:17 -05:00
serai-abi = { path = "../abi", default-features = false, features = ["substrate"] }
serai-core-pallet = { path = "../core", default-features = false }
serai-coins-pallet = { path = "../coins", default-features = false }
serai-dex-pallet = { path = "../dex", default-features = false }
[features]
std = [
"scale/std",
2025-12-02 16:24:17 -05:00
"sp-core/std",
"frame-system/std",
"frame-support/std",
2025-12-02 16:24:17 -05:00
"serai-abi/std",
"serai-core-pallet/std",
"serai-coins-pallet/std",
"serai-dex-pallet/std",
]
try-runtime = [
"frame-system/try-runtime",
"frame-support/try-runtime",
2025-12-02 16:24:17 -05:00
"serai-abi/try-runtime",
"serai-core-pallet/try-runtime",
"serai-coins-pallet/try-runtime",
"serai-dex-pallet/try-runtime",
]
2025-12-02 16:24:17 -05:00
runtime-benchmarks = [
"frame-system/runtime-benchmarks",
"frame-support/runtime-benchmarks",
2025-12-02 16:24:17 -05:00
"serai-core-pallet/runtime-benchmarks",
"serai-coins-pallet/runtime-benchmarks",
"serai-dex-pallet/runtime-benchmarks",
]
default = ["std"]