-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* parallelize analyze * version bump
- Loading branch information
Showing
7 changed files
with
229 additions
and
266 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,5 +28,5 @@ jobs: | |
git config --global user.name "FIRST_NAME LAST_NAME" | ||
git config --global user.email "[email protected]" | ||
- run: cargo clippy --locked -- -D warnings | ||
- run: cargo build --locked --verbose --all | ||
- run: cargo build --locked | ||
- run: cargo test --locked -- --nocapture |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -4,10 +4,10 @@ description = "A tool for effective polyglot, multi-project monorepo development | |
license = "MIT" | ||
homepage = "https://github.com/pnordahl/monorail" | ||
repository = "https://github.com/pnordahl/monorail" | ||
version = "3.5.5" | ||
version = "3.5.6" | ||
authors = ["Patrick Nordahl <[email protected]>"] | ||
edition = "2021" | ||
keywords = ["monorail", "monorepo", "build", "cli", "build-tool"] | ||
keywords = ["monorail", "monorepo", "build", "cli", "build-tool", "development-orchestrator"] | ||
resolver = "2" | ||
|
||
[dependencies] | ||
|
@@ -24,6 +24,7 @@ tracing = { version = "0.1.40", features = ["attributes"] } | |
tracing-subscriber = { version = "0.3.18", features = ["time", "fmt", "std", "registry", "json", "env-filter"] } | ||
once_cell = "1.20.2" | ||
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "now", "std"] } | ||
rayon = "1.10.0" | ||
|
||
[dev-dependencies] | ||
tempfile = "3.13" |
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
Oops, something went wrong.