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.

cargo add sqlite3

+61 -1
+59
Cargo.lock
··· 21 21 checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" 22 22 23 23 [[package]] 24 + name = "cc" 25 + version = "1.2.60" 26 + source = "registry+https://github.com/rust-lang/crates.io-index" 27 + checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20" 28 + dependencies = [ 29 + "find-msvc-tools", 30 + "shlex", 31 + ] 32 + 33 + [[package]] 24 34 name = "cfg-if" 25 35 version = "1.0.4" 26 36 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 53 63 checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" 54 64 55 65 [[package]] 66 + name = "find-msvc-tools" 67 + version = "0.1.9" 68 + source = "registry+https://github.com/rust-lang/crates.io-index" 69 + checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" 70 + 71 + [[package]] 56 72 name = "foldhash" 57 73 version = "0.1.5" 58 74 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 150 166 version = "0.1.0" 151 167 dependencies = [ 152 168 "rand", 169 + "sqlite3", 153 170 "uuid", 154 171 ] 155 172 ··· 164 181 version = "1.21.4" 165 182 source = "registry+https://github.com/rust-lang/crates.io-index" 166 183 checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" 184 + 185 + [[package]] 186 + name = "pkg-config" 187 + version = "0.3.33" 188 + source = "registry+https://github.com/rust-lang/crates.io-index" 189 + checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" 167 190 168 191 [[package]] 169 192 name = "prettyplease" ··· 268 291 "serde", 269 292 "serde_core", 270 293 "zmij", 294 + ] 295 + 296 + [[package]] 297 + name = "shlex" 298 + version = "1.3.0" 299 + source = "registry+https://github.com/rust-lang/crates.io-index" 300 + checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 301 + 302 + [[package]] 303 + name = "sqlite3" 304 + version = "0.24.0" 305 + source = "registry+https://github.com/rust-lang/crates.io-index" 306 + checksum = "1906b10f5e1940b3f2f758992f5958f9b27abaf2e028e86fa3c42f49fb5e583c" 307 + dependencies = [ 308 + "libc", 309 + "sqlite3-sys", 310 + ] 311 + 312 + [[package]] 313 + name = "sqlite3-src" 314 + version = "0.2.12" 315 + source = "registry+https://github.com/rust-lang/crates.io-index" 316 + checksum = "b8bb25e66d026488228a97e0ad21e3d15ec5998dcd9ad73c97cc277c56a6b314" 317 + dependencies = [ 318 + "cc", 319 + "pkg-config", 320 + ] 321 + 322 + [[package]] 323 + name = "sqlite3-sys" 324 + version = "0.12.0" 325 + source = "registry+https://github.com/rust-lang/crates.io-index" 326 + checksum = "71fec807a1534bd13eeaaec396175d67c79bdc68df55e18a452726ec62a8fb08" 327 + dependencies = [ 328 + "libc", 329 + "sqlite3-src", 271 330 ] 272 331 273 332 [[package]]
+2 -1
Cargo.toml
··· 5 5 6 6 [dependencies] 7 7 rand = "0.10.1" 8 + sqlite3 = "0.24.0" 8 9 9 10 [dependencies.uuid] 10 11 version = "1.23.1" 11 - features = ["v4"] 12 + features = ["v4"]