mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 09:27:36 +00:00
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
name = "serai-primitives"
|
|
version = "0.1.0"
|
|
description = "Primitives for the Serai blockchain"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/primitives"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
lazy_static = { version = "1", optional = true }
|
|
|
|
zeroize = { version = "^1.5", features = ["derive"], optional = true }
|
|
|
|
serde = { version = "1", default-features = false, features = ["derive", "alloc"] }
|
|
|
|
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "2", default-features = false, features = ["derive"] }
|
|
|
|
sp-core = { git = "https://github.com/serai-dex/substrate", default-features = false }
|
|
sp-runtime = { git = "https://github.com/serai-dex/substrate", default-features = false }
|
|
|
|
[features]
|
|
std = ["lazy_static", "zeroize", "scale/std", "scale-info/std", "serde/std", "sp-core/std", "sp-runtime/std"]
|
|
default = ["std"]
|