Skip to content

Commit

Permalink
release: bumps wdl version to v0.1.0
Browse files Browse the repository at this point in the history
* `wdl-grammar`: introduced at v0.1.0
  • Loading branch information
claymcleod committed Nov 22, 2023
1 parent 065aa9a commit a0b38d1
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[workspace]
members = ["wdl-grammar"]
members = ["wdl", "wdl-grammar"]
resolver = "2"

[workspace.package]
license = "MIT OR Apache-2.0"
edition = "2021"
version = "0.1.0"

[workspace.dependencies]
clap = { version = "4.4.7", features = ["derive"] }
Expand Down
18 changes: 18 additions & 0 deletions wdl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[package]
name = "wdl"
version.workspace = true
authors = ["Clay McLeod <[email protected]>"]
license.workspace = true
edition.workspace = true
description = "Workflow Description Language (WDL) document parsing and linting"
homepage = "https://github.com/stjude-rust-labs/wdl"
repository = "https://github.com/stjude-rust-labs/wdl"
documentation = "https://docs.rs/wdl"
readme = "../README.md"

[dependencies]
wdl-grammar = { path = "../wdl-grammar", version = "0.1.0", optional = true }

[features]
default = []
grammar = ["dep:wdl-grammar"]
7 changes: 7 additions & 0 deletions wdl/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
//! Workflow Description Language (WDL) document parsing and linting.
#![warn(missing_docs)]

#[cfg(feature = "grammar")]
#[doc(inline)]
pub use wdl_grammar as grammar;

0 comments on commit a0b38d1

Please sign in to comment.