2023-11-05 17:02:34 +00:00
|
|
|
[package]
|
|
|
|
name = "serai-dex-pallet"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "DEX pallet for Serai"
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/dex/pallet"
|
|
|
|
authors = ["Parity Technologies <admin@parity.io>, Akil Demir <aeg_asd@hotmail.com>"]
|
|
|
|
edition = "2021"
|
2023-11-21 06:19:40 +00:00
|
|
|
rust-version = "1.70"
|
2023-11-05 17:02:34 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
|
|
|
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
|
|
|
|
|
|
|
sp-std = { git = "https://github.com/serai-dex/substrate", default-features = false }
|
|
|
|
sp-io = { git = "https://github.com/serai-dex/substrate", default-features = false }
|
|
|
|
sp-api = { git = "https://github.com/serai-dex/substrate", default-features = false }
|
|
|
|
sp-runtime = { git = "https://github.com/serai-dex/substrate", default-features = false }
|
|
|
|
sp-core = { git = "https://github.com/serai-dex/substrate", default-features = false }
|
|
|
|
|
|
|
|
frame-system = { git = "https://github.com/serai-dex/substrate", default-features = false }
|
|
|
|
frame-support = { git = "https://github.com/serai-dex/substrate", default-features = false }
|
|
|
|
frame-benchmarking = { git = "https://github.com/serai-dex/substrate", default-features = false, optional = true }
|
|
|
|
|
2023-11-12 11:37:31 +00:00
|
|
|
coins-pallet = { package = "serai-coins-pallet", path = "../../coins/pallet", default-features = false }
|
2023-11-05 17:02:34 +00:00
|
|
|
|
|
|
|
serai-primitives = { path = "../../primitives", default-features = false }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["std"]
|
|
|
|
std = [
|
|
|
|
"codec/std",
|
|
|
|
"scale-info/std",
|
|
|
|
|
|
|
|
"sp-std/std",
|
|
|
|
"sp-io/std",
|
|
|
|
"sp-api/std",
|
|
|
|
"sp-runtime/std",
|
|
|
|
"sp-core/std",
|
|
|
|
|
|
|
|
"serai-primitives/std",
|
|
|
|
|
|
|
|
"frame-system/std",
|
|
|
|
"frame-support/std",
|
|
|
|
"frame-benchmarking?/std",
|
|
|
|
|
|
|
|
"coins-pallet/std",
|
|
|
|
]
|
|
|
|
runtime-benchmarks = [
|
|
|
|
"sp-runtime/runtime-benchmarks",
|
|
|
|
|
|
|
|
"frame-system/runtime-benchmarks",
|
|
|
|
"frame-support/runtime-benchmarks",
|
|
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
|
|
]
|
|
|
|
try-runtime = [
|
|
|
|
"sp-runtime/try-runtime",
|
|
|
|
|
|
|
|
"frame-system/try-runtime",
|
|
|
|
"frame-support/try-runtime",
|
|
|
|
]
|