[package]
edition = "2021"
name = "dig-service"
version = "0.1.0"
build = false
include = [
"src/**/*.rs",
"tests/**/*.rs",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic Service<N, A, R> orchestration scaffold shared by every DIG Network binary. Lifecycle hooks, TaskRegistry, ShutdownToken — and nothing else."
homepage = "https://github.com/DIG-Network/dig-service"
documentation = "https://docs.rs/dig-service"
readme = "README.md"
keywords = [
"dig-network",
"service",
"tokio",
"orchestration",
"lifecycle",
]
categories = [
"asynchronous",
"cryptography::cryptocurrencies",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/DIG-Network/dig-service"
[features]
default = []
structured-panic = []
testing = []
tokio-console = []
[lib]
name = "dig_service"
path = "src/lib.rs"
[[test]]
name = "lifecycle"
path = "tests/lifecycle.rs"
[[test]]
name = "shutdown"
path = "tests/shutdown.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.dig-rpc-types]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"sync",
"time",
"macros",
]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"sync",
"time",
"macros",
"test-util",
]
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"