flux-core 0.5.2

Declarative task runner with dependency management, parallel execution, and watch mode
# 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 = "flux-core"
version = "0.5.2"
authors = ["Yunus Gungor <mail@yunusgungor.com>"]
build = false
exclude = [
    "target/",
    ".git/",
    ".gitignore",
    "Dockerfile",
    "docker-compose.yml",
    ".dockerignore",
    "examples/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Declarative task runner with dependency management, parallel execution, and watch mode"
homepage = "https://github.com/yunusgungor/flux"
documentation = "https://docs.rs/flux-core"
readme = "README.md"
keywords = [
    "task-runner",
    "build-tool",
    "workflow",
    "automation",
    "cli",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/yunusgungor/flux"

[features]
default = ["native"]
native = [
    "notify",
    "chrono",
]
wasm = []

[[bin]]
name = "flux-core"
path = "src/main.rs"

[[bin]]
name = "flux-wasm"
path = "src/wasm_main.rs"
required-features = ["wasm"]

[dependencies.chrono]
version = "0.4"
optional = true

[dependencies.notify]
version = "6.1"
optional = true

[target.'cfg(target_arch = "wasm32")'.dependencies]