Trading card city builder game?

use utoipa fork for now

eldridge.cam 9b0fb2ae a8cd5021

verified
+25 -4
+24 -3
Cargo.lock
··· 310 310 "tower-http", 311 311 "tracing", 312 312 "tracing-subscriber", 313 - "utoipa", 313 + "utoipa 5.4.0 (git+https://github.com/foxfriends/utoipa)", 314 314 "uuid", 315 315 ] 316 316 ··· 1094 1094 "serde", 1095 1095 "serde_json", 1096 1096 "thiserror 1.0.69", 1097 - "utoipa", 1097 + "utoipa 5.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 1098 1098 ] 1099 1099 1100 1100 [[package]] ··· 2534 2534 "indexmap", 2535 2535 "serde", 2536 2536 "serde_json", 2537 - "utoipa-gen", 2537 + "utoipa-gen 5.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 2538 + ] 2539 + 2540 + [[package]] 2541 + name = "utoipa" 2542 + version = "5.4.0" 2543 + source = "git+https://github.com/foxfriends/utoipa#2aad62c0117ca0df66393eb620205b935f67b672" 2544 + dependencies = [ 2545 + "indexmap", 2546 + "serde", 2547 + "serde_json", 2548 + "utoipa-gen 5.4.0 (git+https://github.com/foxfriends/utoipa)", 2538 2549 ] 2539 2550 2540 2551 [[package]] ··· 2542 2553 version = "5.4.0" 2543 2554 source = "registry+https://github.com/rust-lang/crates.io-index" 2544 2555 checksum = "6d79d08d92ab8af4c5e8a6da20c47ae3f61a0f1dabc1997cdf2d082b757ca08b" 2556 + dependencies = [ 2557 + "proc-macro2", 2558 + "quote", 2559 + "syn", 2560 + ] 2561 + 2562 + [[package]] 2563 + name = "utoipa-gen" 2564 + version = "5.4.0" 2565 + source = "git+https://github.com/foxfriends/utoipa#2aad62c0117ca0df66393eb620205b935f67b672" 2545 2566 dependencies = [ 2546 2567 "proc-macro2", 2547 2568 "quote",
+1 -1
Cargo.toml
··· 31 31 tower-http = { version = "0.6.8", features = ["trace"] } 32 32 tracing = "0.1.44" 33 33 tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json"] } 34 - utoipa = { version = "5.4.0", features = ["time"] } 34 + utoipa = { git = "https://github.com/foxfriends/utoipa", features = ["time"] } # { version = "5.4.0", features = ["time"] } 35 35 uuid = { version = "1.20.0", features = ["serde", "v7"] }