aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorXe Iaso <me@christine.website>2022-07-11 00:49:15 +0000
committerXe Iaso <me@christine.website>2022-07-11 00:49:15 +0000
commitb0a87b890e2f97842ff738166207341ba5f11e58 (patch)
treeac9a45784c6f3243fcd2a88430483b8d0a35bdfc /Cargo.lock
parent3da2c94f689820815903a826f4682a7b8122d35f (diff)
downloadxesite-b0a87b890e2f97842ff738166207341ba5f11e58.tar.xz
xesite-b0a87b890e2f97842ff738166207341ba5f11e58.zip
Revert "fix"
This reverts commit 7dd708c6613b8e617fe77a6a8ad177485b39c258.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock59
1 files changed, 55 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 588ee33..a2d1948 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -265,6 +265,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
+name = "bb8"
+version = "0.7.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2e9f4fa9768efd269499d8fba693260cfc670891cf6de3adc935588447a77cc8"
+dependencies = [
+ "async-trait",
+ "futures-channel",
+ "futures-util",
+ "parking_lot 0.11.2",
+ "tokio",
+]
+
+[[package]]
+name = "bb8-rusqlite"
+version = "0.1.0"
+source = "git+https://github.com/pleshevskiy/bb8-rusqlite?branch=bump-rusqlite#fa3da425ce060a20bb09bdd3313ed1b5e8a5f89d"
+dependencies = [
+ "async-trait",
+ "bb8",
+ "rusqlite",
+ "thiserror",
+ "tokio",
+]
+
+[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1703,12 +1728,37 @@ checksum = "decf7381921fea4dcb2549c5667eda59b3ec297ab7e2b5fc33eac69d2e7da87b"
[[package]]
name = "parking_lot"
+version = "0.11.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
+dependencies = [
+ "instant",
+ "lock_api",
+ "parking_lot_core 0.8.5",
+]
+
+[[package]]
+name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
- "parking_lot_core",
+ "parking_lot_core 0.9.3",
+]
+
+[[package]]
+name = "parking_lot_core"
+version = "0.8.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
+dependencies = [
+ "cfg-if",
+ "instant",
+ "libc",
+ "redox_syscall",
+ "smallvec",
+ "winapi",
]
[[package]]
@@ -2025,7 +2075,7 @@ dependencies = [
"lazy_static",
"libc",
"memchr",
- "parking_lot",
+ "parking_lot 0.12.1",
"procfs",
"thiserror",
]
@@ -2719,7 +2769,7 @@ dependencies = [
"mio",
"num_cpus",
"once_cell",
- "parking_lot",
+ "parking_lot 0.12.1",
"pin-project-lite",
"signal-hook-registry",
"socket2",
@@ -3302,6 +3352,8 @@ dependencies = [
"axum 0.5.11",
"axum-extra",
"axum-macros",
+ "bb8",
+ "bb8-rusqlite",
"cfcache",
"chrono",
"color-eyre",
@@ -3347,7 +3399,6 @@ dependencies = [
"tracing",
"tracing-futures",
"tracing-subscriber",
- "ts_localapi",
"url",
"uuid 0.8.2",
"xe_jsonfeed",