-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from metacall/improve-utils
refactor: improve `metassr-utils` - Document all utilities in `metassr-utils` - Improve tests for all utilites - move dirs analyzers to `metassr-fs-analyzer`
- Loading branch information
Showing
26 changed files
with
1,269 additions
and
344 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -5,7 +5,6 @@ edition = "2021" | |
authors = ["Mohamed Emad ([email protected])"] | ||
description = "Another SSR framework but built with MetaCall!" | ||
|
||
|
||
[dependencies] | ||
anyhow = "1.0.82" | ||
chrono = "0.4.38" | ||
|
@@ -32,6 +31,7 @@ tower-layer = "0.3.3" | |
tower-service = "0.3.3" | ||
metassr-create = { path = "crates/metassr-create" } | ||
metassr-bundler = { path = "crates/metassr-bundler" } | ||
metassr-fs-analyzer = { path = "crates/metassr-fs-analyzer" } | ||
|
||
[workspace] | ||
members = [ | ||
|
@@ -41,7 +41,9 @@ members = [ | |
"crates/metassr-utils", | ||
"crates/html-generator", | ||
"metassr-cli", | ||
"crates/metassr-create", "crates/metassr-bundler", | ||
"crates/metassr-create", | ||
"crates/metassr-bundler", | ||
"crates/metassr-fs-analyzer", | ||
] | ||
|
||
[[bin]] | ||
|
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
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
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,13 @@ | ||
[package] | ||
name = "metassr-fs-analyzer" | ||
description = "This module provides directory analyzers for MetaSSR web applications." | ||
version = "0.0.1-alpha" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
anyhow = "1.0.89" | ||
metassr-utils = { version = "0.0.1-alpha", path = "../metassr-utils" } | ||
serde = "1.0.210" | ||
walkdir = "2.5.0" |
Oops, something went wrong.