30 lines
1020 B
TOML
30 lines
1020 B
TOML
# file: crates/ksp-job-backfill-lib/Cargo.toml
|
|
# version: 7
|
|
|
|
[package]
|
|
name = "ksp-job-backfill-lib"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
futures-util = { workspace = true, features = ["std"] }
|
|
ksp-core-lib = { path = "../ksp-core-lib" }
|
|
ksp-job-api = { path = "../ksp-job-api" }
|
|
ksp-logging-lib = { path = "../ksp-logging-lib" }
|
|
ksp-onchain-transport-lib = { path = "../ksp-onchain-transport-lib" }
|
|
ksp-raw-transaction-lib = { path = "../ksp-raw-transaction-lib" }
|
|
ksp-store-lib = { path = "../ksp-store-lib", default-features = false }
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
tokio = { workspace = true, features = ["macros", "sync"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
|
tokio-tungstenite = { workspace = true, features = ["handshake"] }
|
|
tonic = { workspace = true, features = ["codegen", "server"] }
|
|
yellowstone-grpc-proto = { workspace = true, features = ["tonic"] }
|
|
|
|
[lints]
|
|
workspace = true
|