feat: move project to crates
Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
parent
381b472eca
commit
6e16fc6b2b
22
Cargo.toml
22
Cargo.toml
@ -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"] }
|
||||||
|
@ -2,4 +2,4 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
(cd como_bin; cargo watch -x run)
|
(cd crates/como_bin; cargo watch -x run)
|
||||||
|
Loading…
Reference in New Issue
Block a user