move all crates into crates/, glob members
pure move, no code touched. readme and protocol.md paths fixed up.
This commit is contained in:
parent
972c61dae7
commit
d25a6de423
110 changed files with 9 additions and 19 deletions
28
Cargo.toml
28
Cargo.toml
|
|
@ -1,16 +1,6 @@
|
|||
[workspace]
|
||||
resolver = "2"
|
||||
members = [
|
||||
"titan/titan",
|
||||
"titan/titan-derive",
|
||||
"logic/logic",
|
||||
"logic/logic-derive",
|
||||
"services/service-rpc",
|
||||
"services/auth-service",
|
||||
"services/game-service",
|
||||
"services/gateway",
|
||||
"services/scroll-server",
|
||||
]
|
||||
members = ["crates/*"]
|
||||
|
||||
[workspace.package]
|
||||
version = "0.1.0"
|
||||
|
|
@ -19,14 +9,14 @@ rust-version = "1.75"
|
|||
license = "MIT"
|
||||
|
||||
[workspace.dependencies]
|
||||
titan = { path = "titan/titan" }
|
||||
titan-derive = { path = "titan/titan-derive" }
|
||||
logic = { path = "logic/logic" }
|
||||
logic-derive = { path = "logic/logic-derive" }
|
||||
service-rpc = { path = "services/service-rpc" }
|
||||
auth-service = { path = "services/auth-service" }
|
||||
game-service = { path = "services/game-service" }
|
||||
gateway = { path = "services/gateway" }
|
||||
titan = { path = "crates/titan" }
|
||||
titan-derive = { path = "crates/titan-derive" }
|
||||
logic = { path = "crates/logic" }
|
||||
logic-derive = { path = "crates/logic-derive" }
|
||||
service-rpc = { path = "crates/service-rpc" }
|
||||
auth-service = { path = "crates/auth-service" }
|
||||
game-service = { path = "crates/game-service" }
|
||||
gateway = { path = "crates/gateway" }
|
||||
|
||||
tokio = { version = "1.45", features = ["rt-multi-thread", "macros", "net", "io-util", "sync", "time", "signal", "fs"] }
|
||||
thiserror = "2"
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue