[package]
edition = "2024"
name = "commonwl"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the CommonWorkflowLanguage (CWL) standard"
readme = "README.md"
keywords = [
"cwl",
"commonwl",
"workflow",
"fairagro",
]
categories = ["science"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/fairagro/commonwl"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
engine = [
"dep:cwl_engine",
"dep:cwl_engine_storage",
]
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
[dependencies.cwl_engine_storage]
version = "0"
optional = true