[package]
edition = "2021"
rust-version = "1.74"
name = "flux-platform"
version = "1.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A local-first, AI-native developer automation platform: build, test, package, and deploy from a single .flux file, and make your repository legible to AI agents."
homepage = "https://github.com/martin-k-m/flux"
documentation = "https://github.com/martin-k-m/flux/tree/main/docs"
readme = "README.md"
keywords = [
"build",
"ci",
"automation",
"cli",
"pipeline",
]
categories = [
"command-line-utilities",
"development-tools::build-utils",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/martin-k-m/flux"
[[bin]]
name = "flux"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = [
"std",
"derive",
"help",
"usage",
"error-context",
"suggestions",
]
default-features = false
[dependencies.sha2]
version = "0.11"
[profile.release]
lto = "thin"
strip = true