mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-26 05:29:55 +00:00
b65dbacd6a
I'm unsure where else it'll be used within the processor, yet it's generally useful and I don't want to make a dedicated crate yet.
30 lines
1 KiB
TOML
30 lines
1 KiB
TOML
[package]
|
|
name = "serai-processor-primitives"
|
|
version = "0.1.0"
|
|
description = "Primitives for the Serai processor"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor/primitives"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = []
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = { version = "0.1", default-features = false }
|
|
|
|
group = { version = "0.13", default-features = false }
|
|
|
|
serai-primitives = { path = "../../substrate/primitives", default-features = false, features = ["std"] }
|
|
|
|
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["std"] }
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
|
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
|
tokio = { version = "1", default-features = false, features = ["macros", "sync", "time"] }
|