A card game engine for TCGs, primarily Magic: The Gathering but with support for others
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Updating Cargo.lock

+25
+25
Cargo.lock
··· 1306 1306 version = "0.1.0" 1307 1307 dependencies = [ 1308 1308 "sea-orm", 1309 + "tokio", 1309 1310 "uuid", 1310 1311 ] 1311 1312 ··· 2230 2231 checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 2231 2232 2232 2233 [[package]] 2234 + name = "signal-hook-registry" 2235 + version = "1.4.8" 2236 + source = "registry+https://github.com/rust-lang/crates.io-index" 2237 + checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" 2238 + dependencies = [ 2239 + "errno", 2240 + "libc", 2241 + ] 2242 + 2243 + [[package]] 2233 2244 name = "signature" 2234 2245 version = "2.2.0" 2235 2246 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2674 2685 "bytes", 2675 2686 "libc", 2676 2687 "mio", 2688 + "parking_lot", 2677 2689 "pin-project-lite", 2690 + "signal-hook-registry", 2678 2691 "socket2", 2692 + "tokio-macros", 2679 2693 "windows-sys 0.61.2", 2694 + ] 2695 + 2696 + [[package]] 2697 + name = "tokio-macros" 2698 + version = "2.7.0" 2699 + source = "registry+https://github.com/rust-lang/crates.io-index" 2700 + checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" 2701 + dependencies = [ 2702 + "proc-macro2", 2703 + "quote", 2704 + "syn 2.0.117", 2680 2705 ] 2681 2706 2682 2707 [[package]]