mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
* Enforce alphabetically ordered cargo deps * Fix test-suite * Another CI fix * Merge branch 'unstable' into cargo-sort * Fix conflicts * Merge remote-tracking branch 'origin/unstable' into cargo-sort
21 lines
616 B
TOML
21 lines
616 B
TOML
[package]
|
|
name = "task_executor"
|
|
version = "0.1.0"
|
|
authors = ["Sigma Prime <contact@sigmaprime.io>"]
|
|
edition = { workspace = true }
|
|
|
|
[features]
|
|
default = ["slog"]
|
|
slog = ["dep:slog", "dep:sloggers", "dep:logging"]
|
|
tracing = ["dep:tracing"]
|
|
|
|
[dependencies]
|
|
async-channel = { workspace = true }
|
|
futures = { workspace = true }
|
|
logging = { workspace = true, optional = true }
|
|
metrics = { workspace = true }
|
|
slog = { workspace = true, optional = true }
|
|
sloggers = { workspace = true, optional = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
|
tracing = { workspace = true, optional = true }
|