[package]
edition = "2024"
rust-version = "1.95"
name = "greentic-flow"
version = "0.5.2"
build = "build.rs"
include = [
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/LICENSE",
"/build.rs",
"/frequent-components.json",
"/src/**",
"/i18n/**",
"/schemas/**",
"/fixtures/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic YGTC flow schema/loader/IR for self-describing component nodes."
readme = "README.md"
license = "MIT"
repository = "https://github.com/greenticai/greentic-flow"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-{ target }.tar.gz"
pkg-fmt = "tar.gz"
bin-dir = "{ name }-v{ version }-{ target }/{ bin }{ binary-ext }"
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-pc-windows-msvc",
]
[features]
default = []
toml = ["dep:toml"]
[lib]
name = "greentic_flow"
path = "src/lib.rs"
[[bin]]
name = "greentic-flow"
path = "src/bin/greentic-flow.rs"
[[test]]
name = "adapter_resolvable_fail"
path = "tests/adapter_resolvable_fail.rs"
[[test]]
name = "adapter_resolvable_ok"
path = "tests/adapter_resolvable_ok.rs"
[[test]]
name = "add_step_advanced"
path = "tests/add_step_advanced.rs"
[[test]]
name = "add_step_config_runner"
path = "tests/add_step_config_runner.rs"
[[test]]
name = "add_step_enterprise"
path = "tests/add_step_enterprise.rs"
[[test]]
name = "add_step_golden"
path = "tests/add_step_golden.rs"
[[test]]
name = "add_step_integration"
path = "tests/add_step_integration.rs"
[[test]]
name = "answers"
path = "tests/answers.rs"
[[test]]
name = "answers_cli_ops"
path = "tests/answers_cli_ops.rs"
[[test]]
name = "bundle_contract"
path = "tests/bundle_contract.rs"
[[test]]
name = "bundle_golden"
path = "tests/bundle_golden.rs"
[[test]]
name = "cache_coverage"
path = "tests/cache_coverage.rs"
[[test]]
name = "component_catalog"
path = "tests/component_catalog.rs"
[[test]]
name = "component_schema_cli"
path = "tests/component_schema_cli.rs"
[[test]]
name = "config_flow"
path = "tests/config_flow.rs"
[[test]]
name = "contract_hash"
path = "tests/contract_hash.rs"
[[test]]
name = "flow_cli_ops"
path = "tests/flow_cli_ops.rs"
[[test]]
name = "flow_ir_roundtrip"
path = "tests/flow_ir_roundtrip.rs"
[[test]]
name = "helper_coverage"
path = "tests/helper_coverage.rs"
[[test]]
name = "i18n"
path = "tests/i18n.rs"
[[test]]
name = "ir_roundtrip"
path = "tests/ir_roundtrip.rs"
[[test]]
name = "lint_builtin"
path = "tests/lint_builtin.rs"
[[test]]
name = "lint_json"
path = "tests/lint_json.rs"
[[test]]
name = "load_err"
path = "tests/load_err.rs"
[[test]]
name = "load_ok"
path = "tests/load_ok.rs"
[[test]]
name = "manifest_normalization"
path = "tests/manifest_normalization.rs"
[[test]]
name = "perf_scaling"
path = "tests/perf_scaling.rs"
[[test]]
name = "perf_support"
path = "tests/perf_support.rs"
[[test]]
name = "perf_timeout"
path = "tests/perf_timeout.rs"
[[test]]
name = "readme_examples"
path = "tests/readme_examples.rs"
[[test]]
name = "schema_validate"
path = "tests/schema_validate.rs"
[[test]]
name = "singleflight_coverage"
path = "tests/singleflight_coverage.rs"
[[test]]
name = "splice"
path = "tests/splice.rs"
[[test]]
name = "wizard_scaffold"
path = "tests/wizard_scaffold.rs"
[dependencies.anyhow]
version = "1"
[dependencies.blake3]
version = "1"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.ciborium]
version = "0.2"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dashmap]
version = "6"
[dependencies.greentic-distributor-client]
version = "0.5"
features = [
"dist-client",
"http-runtime",
]
default-features = false
[dependencies.greentic-i18n-translator]
version = "0.5"
[dependencies.greentic-interfaces-host]
version = "0.5"
[dependencies.greentic-interfaces-wasmtime]
version = "0.5"
[dependencies.greentic-qa-lib]
version = "0.5"
[dependencies.greentic-types]
version = "0.5"
features = [
"telemetry-autoinit",
"schema",
]
[dependencies.handlebars]
version = "6"
[dependencies.include_dir]
version = "0.7"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.jsonschema]
version = "0.46"
[dependencies.lazy_static]
version = "1"
[dependencies.pathdiff]
version = "0.2"
[dependencies.qa-spec]
version = "0.5"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = [
"blocking",
"rustls",
]
default-features = false
[dependencies.semver]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml_bw]
version = "2.5.2"
package = "serde_yaml_gtc"
[dependencies.sha2]
version = "0.11"
[dependencies.sys-locale]
version = "0.3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.toml]
version = "1"
optional = true
[dependencies.tracing]
version = "0.1"
[dependencies.unic-langid]
version = "0.9"
[dependencies.url]
version = "2"
[dependencies.wasmtime]
version = "43"
features = ["component-model"]
[dependencies.wasmtime-environ]
version = "43"
[dependencies.wasmtime-wasi]
version = "43"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.insta]
version = "1"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.serde_json]
version = "1"