mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-26 05:29:55 +00:00
7761798a78
This was only half-finished to begin with, unfortunately...
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "serai-processor-smart-contract-scheduler"
|
|
version = "0.1.0"
|
|
description = "Scheduler for a smart contract representing the Serai processor"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor/scheduler/smart-contract"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = []
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["scale", "borsh"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
group = { version = "0.13", default-features = false }
|
|
|
|
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["std"] }
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
|
|
|
serai-db = { path = "../../../common/db" }
|
|
|
|
primitives = { package = "serai-processor-primitives", path = "../../primitives" }
|
|
scanner = { package = "serai-processor-scanner", path = "../../scanner" }
|
|
scheduler-primitives = { package = "serai-processor-scheduler-primitives", path = "../primitives" }
|