[package]
edition = "2024"
name = "commonwl"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the CommonWorkflowLanguage (CWL) standard"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/fairagro/commonwl"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
engine = ["dep:cwl_engine"]
tes = [
"engine",
"cwl_engine/tes",
]
[lib]
name = "commonwl"
path = "lib.rs"
[[example]]
name = "cwl_load"
path = "examples/cwl_load.rs"
[dependencies.cwl_core]
version = "0"
[dependencies.cwl_engine]
version = "0"
optional = true