[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]