-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement multi-file analysis. (#110)
- Loading branch information
1 parent
67ab316
commit cf378af
Showing
128 changed files
with
4,393 additions
and
1,525 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## Unreleased | ||
|
||
### Added | ||
|
||
* Added the `wdl-analysis` crate for analyzing WDL documents ([#110](https://github.com/stjude-rust-labs/wdl/pull/110)). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[package] | ||
name = "wdl-analysis" | ||
version = "0.1.0" | ||
license.workspace = true | ||
edition.workspace = true | ||
authors.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
description = "Analysis of Workflow Description Language (WDL) documents." | ||
documentation = "https://docs.rs/wdl-analysis" | ||
|
||
[dependencies] | ||
wdl-ast = { path = "../wdl-ast", version = "0.4.0" } | ||
wdl-lint = { path = "../wdl-lint", version = "0.3.0", optional = true } | ||
anyhow = { workspace = true } | ||
rowan = { workspace = true } | ||
url = { workspace = true } | ||
tokio = { workspace = true } | ||
parking_lot = { workspace = true } | ||
log = { workspace = true } | ||
rayon = { workspace = true } | ||
reqwest = { workspace = true } | ||
petgraph = { workspace = true } | ||
futures = { workspace = true } | ||
glob = { workspace = true } | ||
path-clean = { workspace = true } | ||
indexmap = { workspace = true } | ||
|
||
[dev-dependencies] | ||
pretty_assertions = { workspace = true } | ||
colored = { workspace = true } | ||
codespan-reporting = { workspace = true } | ||
|
||
[features] | ||
default = [] | ||
codespan = ["wdl-ast/codespan"] | ||
|
||
[[test]] | ||
name = "analysis" | ||
required-features = ["codespan"] | ||
harness = false |
Oops, something went wrong.