tes/lib.rs
1//! Facilities for working with the Task Execution Service specification.
2//!
3//! The Task Execution Service (TES) specification is an effort organized by the
4//! Global Alliance for Genomics and Health (GA4GH) to define a common API
5//! standard for describing and executing batched execution tasks. You can learn
6//! more about the specification at the dedicated [website] or the [Swagger
7//! Editor][swagger].
8//!
9//! At present, versions 1.x of the specification are supported.
10//!
11//! ## Features
12//!
13//! This crate provides the following features.
14//!
15//! [website]: https://ga4gh.github.io/task-execution-schemas/
16//! [swagger]:
17//! https://editor.swagger.io/?url=https://ga4gh.github.io/task-execution-schemas/openapi.yaml
18#![doc = include_str!("../docs/FEATURES.md")]
19
20pub mod v1;