taskgraph-rs 0.1.2

NASA-grade, zero-dependency DAG task orchestrator for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "taskgraph-rs"
version = "0.1.2"
authors = ["Ferrolab <ferrolab@tutamail.com>"]
build = false
include = [
    "src/**/*",
    "tests/**/*",
    "benches/**/*",
    "Cargo.toml",
    "README.md",
    "LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "NASA-grade, zero-dependency DAG task orchestrator for Rust"
homepage = "https://github.com/ferrolab-rs/taskgraph-rs"
readme = "README.md"
keywords = [
    "dag",
    "task",
    "orchestrator",
    "embedded",
    "no-std",
]
categories = [
    "embedded",
    "concurrency",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/ferrolab-rs/taskgraph-rs"

[features]
alloc = []
async = ["dep:tokio"]
cli = [
    "dep:clap",
    "dep:indicatif",
    "dep:colored",
]
default = ["std"]
serde = [
    "dep:serde_json",
    "dep:serde",
]
std = []

[lib]
name = "taskgraph"
path = "src/lib.rs"

[[bin]]
name = "taskgraph"
path = "src/bin/cli.rs"
required-features = ["cli"]

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[[bench]]
name = "task_bench"
path = "benches/task_bench.rs"
harness = false

[dependencies.clap]
version = "4.0"
features = ["derive"]
optional = true

[dependencies.colored]
version = "2.0"
optional = true

[dependencies.indicatif]
version = "0.17"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0"
optional = true

[dependencies.tokio]
version = "1.0"
features = [
    "rt-multi-thread",
    "macros",
    "sync",
    "time",
]
optional = true

[dev-dependencies.tokio]
version = "1.0"
features = ["full"]