Cargo.lock (4252B)
1 # This file is automatically @generated by Cargo. 2 # It is not intended for manual editing. 3 version = 3 4 5 [[package]] 6 name = "ahash" 7 version = "0.7.6" 8 source = "registry+https://github.com/rust-lang/crates.io-index" 9 checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 10 dependencies = [ 11 "getrandom", 12 "once_cell", 13 "version_check", 14 ] 15 16 [[package]] 17 name = "bitflags" 18 version = "1.3.2" 19 source = "registry+https://github.com/rust-lang/crates.io-index" 20 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 21 22 [[package]] 23 name = "cc" 24 version = "1.0.71" 25 source = "registry+https://github.com/rust-lang/crates.io-index" 26 checksum = "79c2681d6594606957bbb8631c4b90a7fcaaa72cdb714743a437b156d6a7eedd" 27 28 [[package]] 29 name = "cfg-if" 30 version = "1.0.0" 31 source = "registry+https://github.com/rust-lang/crates.io-index" 32 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 33 34 [[package]] 35 name = "database" 36 version = "0.1.0" 37 dependencies = [ 38 "rusqlite", 39 ] 40 41 [[package]] 42 name = "fallible-iterator" 43 version = "0.2.0" 44 source = "registry+https://github.com/rust-lang/crates.io-index" 45 checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 46 47 [[package]] 48 name = "fallible-streaming-iterator" 49 version = "0.1.9" 50 source = "registry+https://github.com/rust-lang/crates.io-index" 51 checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 52 53 [[package]] 54 name = "getrandom" 55 version = "0.2.3" 56 source = "registry+https://github.com/rust-lang/crates.io-index" 57 checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" 58 dependencies = [ 59 "cfg-if", 60 "libc", 61 "wasi", 62 ] 63 64 [[package]] 65 name = "hashbrown" 66 version = "0.11.2" 67 source = "registry+https://github.com/rust-lang/crates.io-index" 68 checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" 69 dependencies = [ 70 "ahash", 71 ] 72 73 [[package]] 74 name = "hashlink" 75 version = "0.7.0" 76 source = "registry+https://github.com/rust-lang/crates.io-index" 77 checksum = "7249a3129cbc1ffccd74857f81464a323a152173cdb134e0fd81bc803b29facf" 78 dependencies = [ 79 "hashbrown", 80 ] 81 82 [[package]] 83 name = "libc" 84 version = "0.2.105" 85 source = "registry+https://github.com/rust-lang/crates.io-index" 86 checksum = "869d572136620d55835903746bcb5cdc54cb2851fd0aeec53220b4bb65ef3013" 87 88 [[package]] 89 name = "libsqlite3-sys" 90 version = "0.23.1" 91 source = "registry+https://github.com/rust-lang/crates.io-index" 92 checksum = "abd5850c449b40bacb498b2bbdfaff648b1b055630073ba8db499caf2d0ea9f2" 93 dependencies = [ 94 "cc", 95 "pkg-config", 96 "vcpkg", 97 ] 98 99 [[package]] 100 name = "memchr" 101 version = "2.4.1" 102 source = "registry+https://github.com/rust-lang/crates.io-index" 103 checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" 104 105 [[package]] 106 name = "once_cell" 107 version = "1.8.0" 108 source = "registry+https://github.com/rust-lang/crates.io-index" 109 checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" 110 111 [[package]] 112 name = "pkg-config" 113 version = "0.3.22" 114 source = "registry+https://github.com/rust-lang/crates.io-index" 115 checksum = "12295df4f294471248581bc09bef3c38a5e46f1e36d6a37353621a0c6c357e1f" 116 117 [[package]] 118 name = "rusqlite" 119 version = "0.26.1" 120 source = "registry+https://github.com/rust-lang/crates.io-index" 121 checksum = "8a82b0b91fad72160c56bf8da7a549b25d7c31109f52cc1437eac4c0ad2550a7" 122 dependencies = [ 123 "bitflags", 124 "fallible-iterator", 125 "fallible-streaming-iterator", 126 "hashlink", 127 "libsqlite3-sys", 128 "memchr", 129 "smallvec", 130 ] 131 132 [[package]] 133 name = "smallvec" 134 version = "1.7.0" 135 source = "registry+https://github.com/rust-lang/crates.io-index" 136 checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309" 137 138 [[package]] 139 name = "vcpkg" 140 version = "0.2.15" 141 source = "registry+https://github.com/rust-lang/crates.io-index" 142 checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 143 144 [[package]] 145 name = "version_check" 146 version = "0.9.3" 147 source = "registry+https://github.com/rust-lang/crates.io-index" 148 checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" 149 150 [[package]] 151 name = "wasi" 152 version = "0.10.2+wasi-snapshot-preview1" 153 source = "registry+https://github.com/rust-lang/crates.io-index" 154 checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"