feat: move project to crates

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2023-10-21 11:14:58 +02:00
parent 381b472eca
commit 6e16fc6b2b
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912
63 changed files with 9 additions and 15 deletions

View File

@ -1,23 +1,17 @@
[workspace] [workspace]
members = [ members = [
"como_bin", "crates/*"
"como_core",
"como_domain",
"como_infrastructure",
"como_gql",
"como_api",
"como_auth",
] ]
resolver = "2" resolver = "2"
[workspace.dependencies] [workspace.dependencies]
como_bin = { path = "./como_bin/" } como_bin = { path = "./crates/como_bin/" }
como_core = { path = "./como_core/" } como_core = { path = "./crates/como_core/" }
como_domain = { path = "./como_domain/" } como_domain = { path = "./crates/como_domain/" }
como_infrastructure = { path = "./como_infrastructure/" } como_infrastructure = { path = "./crates/como_infrastructure/" }
como_gql = { path = "./como_gql/" } como_gql = { path = "./crates/como_gql/" }
como_api = { path = "./como_api/" } como_api = { path = "./crates/como_api/" }
como_auth = { path = "./como_auth/" } como_auth = { path = "./crates/como_auth/" }
async-trait = "0.1.68" async-trait = "0.1.68"
async-graphql = { version = "5.0.9", features = ["uuid"] } async-graphql = { version = "5.0.9", features = ["uuid"] }

View File

@ -2,4 +2,4 @@
set -e set -e
(cd como_bin; cargo watch -x run) (cd crates/como_bin; cargo watch -x run)