# 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 = "willdo" version = "0.0.1" authors = ["Jo "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Task manager with DAG" documentation = "https://docs.rs/willdo" readme = "README.md" keywords = ["automation"] categories = ["command-line-utilities"] license = "MIT OR Apache-2.0" repository = "https://gitlab.com/BrightOpen/willdo" [profile.release] opt-level = "z" lto = true codegen-units = 1 panic = "abort" strip = true [lib] name = "willdo" path = "src/lib.rs" [[bin]] name = "willdo" path = "src/cli/main.rs" [[example]] name = "willdo" path = "examples/willdo.rs" [[example]] name = "willdo-neat" path = "examples/willdo-neat.rs" [[example]] name = "willdo-tree" path = "examples/willdo-tree.rs" [[test]] name = "parse-doc" path = "tests/parse-doc.rs" [[test]] name = "parse-include" path = "tests/parse-include.rs" [[test]] name = "parse-job-rules" path = "tests/parse-job-rules.rs" [[test]] name = "parse-job-script" path = "tests/parse-job-script.rs" [[test]] name = "parse-job-triggers" path = "tests/parse-job-triggers.rs" [dependencies.async-process] version = "2" optional = true [dependencies.daggy] version = "0.8" [dependencies.env_logger] version = "0.11.5" optional = true [dependencies.futures-lite] version = "2" default-features = false [dependencies.glob] version = "0.3" [dependencies.log] version = "0.4.22" default-features = false [dependencies.petgraph] version = "0.6" [dependencies.pretty_env_logger] version = "0.5" optional = true [dependencies.rand] version = "0.8" optional = true default-features = false [dependencies.serde] version = "1.0" features = ["derive"] default-features = false [dependencies.serde-content] version = "0.1" features = ["serde"] [dependencies.serde_yaml] version = "0.9" default-features = false [dependencies.thiserror] version = "2" default-features = false [dependencies.url] version = "2.5" default-features = false [dev-dependencies.futures-lite] version = "2" [dev-dependencies.insta] version = "1" [features] default = ["subprocess"] full = [ "default", "pretty_env_logger", "main-blocking", ] main-blocking = ["futures-lite/std"] subprocess = [ "dep:async-process", "rand/getrandom", "futures-lite/std", ]