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]
|
[workspace]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
members = [
|
members = ["crates/*"]
|
||||||
"titan/titan",
|
|
||||||
"titan/titan-derive",
|
|
||||||
"logic/logic",
|
|
||||||
"logic/logic-derive",
|
|
||||||
"services/service-rpc",
|
|
||||||
"services/auth-service",
|
|
||||||
"services/game-service",
|
|
||||||
"services/gateway",
|
|
||||||
"services/scroll-server",
|
|
||||||
]
|
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
|
@ -19,14 +9,14 @@ rust-version = "1.75"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
titan = { path = "titan/titan" }
|
titan = { path = "crates/titan" }
|
||||||
titan-derive = { path = "titan/titan-derive" }
|
titan-derive = { path = "crates/titan-derive" }
|
||||||
logic = { path = "logic/logic" }
|
logic = { path = "crates/logic" }
|
||||||
logic-derive = { path = "logic/logic-derive" }
|
logic-derive = { path = "crates/logic-derive" }
|
||||||
service-rpc = { path = "services/service-rpc" }
|
service-rpc = { path = "crates/service-rpc" }
|
||||||
auth-service = { path = "services/auth-service" }
|
auth-service = { path = "crates/auth-service" }
|
||||||
game-service = { path = "services/game-service" }
|
game-service = { path = "crates/game-service" }
|
||||||
gateway = { path = "services/gateway" }
|
gateway = { path = "crates/gateway" }
|
||||||
|
|
||||||
tokio = { version = "1.45", features = ["rt-multi-thread", "macros", "net", "io-util", "sync", "time", "signal", "fs"] }
|
tokio = { version = "1.45", features = ["rt-multi-thread", "macros", "net", "io-util", "sync", "time", "signal", "fs"] }
|
||||||
thiserror = "2"
|
thiserror = "2"
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue