mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
28 lines
1.4 KiB
TOML
28 lines
1.4 KiB
TOML
[package]
|
|
name = "serai-processor-messages"
|
|
version = "0.1.0"
|
|
description = "Messages sent and received by the processor"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor/messages"
|
|
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]
|
|
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["std"] }
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
|
|
|
dkg = { path = "../../crypto/dkg", default-features = false, features = ["std", "borsh"] }
|
|
|
|
serai-primitives = { path = "../../substrate/primitives", default-features = false, features = ["std", "borsh"] }
|
|
in-instructions-primitives = { package = "serai-in-instructions-primitives", path = "../../substrate/in-instructions/primitives", default-features = false, features = ["std", "borsh"] }
|
|
coins-primitives = { package = "serai-coins-primitives", path = "../../substrate/coins/primitives", default-features = false, features = ["std", "borsh"] }
|
|
validator-sets-primitives = { package = "serai-validator-sets-primitives", path = "../../substrate/validator-sets/primitives", default-features = false, features = ["std", "borsh"] }
|