Skip to content

Commit

Permalink
Move seed independend code into separat crate
Browse files Browse the repository at this point in the history
  • Loading branch information
flosse committed Jun 26, 2024
1 parent 88ce314 commit 2e9238f
Show file tree
Hide file tree
Showing 25 changed files with 665 additions and 309 deletions.
203 changes: 195 additions & 8 deletions Cargo.lock

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

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ members = [
"crates/infrastructure",
"crates/json-boundary",
"crates/web-app-api",
"crates/web-app-kern",
"crates/web-app-seed",
"crates/web-server-warp"
]
exclude = [ "crates/web-app-seed" ]
exclude = [ "crates/web-app" ]

[workspace.package]
authors = ["Markus Kohlhase <[email protected]>"]
Expand All @@ -52,6 +54,8 @@ cawr-domain = { path = "crates/domain" }
cawr-infrastructure = { path = "crates/infrastructure" }
cawr-json-boundary = { path = "crates/json-boundary" }
cawr-web-app-api = { path = "crates/web-app-api" }
cawr-web-app-kern = { path = "crates/web-app-kern" }
cawr-web-app-seed = { path = "crates/web-app-seed" }
cawr-web-server-warp = { path = "crates/web-server-warp" }

[profile.release]
Expand Down
Loading

0 comments on commit 2e9238f

Please sign in to comment.