]> Untitled Git - lemmy.git/commitdiff
Version 0.14.0-rc.2
authorDessalines <tyhou13@gmx.com>
Wed, 17 Nov 2021 14:14:54 +0000 (09:14 -0500)
committerDessalines <tyhou13@gmx.com>
Wed, 17 Nov 2021 14:14:54 +0000 (09:14 -0500)
15 files changed:
Cargo.lock
Cargo.toml
crates/api/Cargo.toml
crates/api_common/Cargo.toml
crates/api_crud/Cargo.toml
crates/apub/Cargo.toml
crates/apub_lib/Cargo.toml
crates/apub_lib_derive/Cargo.toml
crates/db_schema/Cargo.toml
crates/db_views/Cargo.toml
crates/db_views_actor/Cargo.toml
crates/db_views_moderator/Cargo.toml
crates/routes/Cargo.toml
crates/utils/Cargo.toml
crates/websocket/Cargo.toml

index abc5cf93ebe8001b25b0f7345d6f7100238a4662..af298a5f352009e1b803d28de7b759112d548fd1 100644 (file)
@@ -1707,7 +1707,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 
 [[package]]
 name = "lemmy_api"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1752,7 +1752,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_common"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "actix-web",
  "chrono",
@@ -1770,7 +1770,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_crud"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1815,7 +1815,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "activitystreams",
  "actix",
@@ -1861,7 +1861,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "activitystreams",
  "actix-web",
@@ -1887,7 +1887,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib_derive"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "proc-macro2 1.0.29",
  "quote 1.0.10",
@@ -1897,7 +1897,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_schema"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "bcrypt",
  "chrono",
@@ -1920,7 +1920,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1932,7 +1932,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_actor"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1941,7 +1941,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_moderator"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1950,7 +1950,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_routes"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "actix",
  "actix-http",
@@ -1978,7 +1978,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_server"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "activitystreams",
  "actix",
@@ -2017,7 +2017,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_utils"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "actix-rt",
  "actix-web",
@@ -2053,7 +2053,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_websocket"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 dependencies = [
  "actix",
  "actix-web",
index 2e798b9dad0e1c75e0a6426658f9c36971d56358..17962fd427427c4849af99363f20eb069713149b 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_server"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -31,18 +31,18 @@ members = [
 ]
 
 [dependencies]
-lemmy_api = { version = "=0.14.0-rc.1", path = "./crates/api" }
-lemmy_api_crud = { version = "=0.14.0-rc.1", path = "./crates/api_crud" }
-lemmy_apub = { version = "=0.14.0-rc.1", path = "./crates/apub" }
-lemmy_apub_lib = { version = "=0.14.0-rc.1", path = "./crates/apub_lib" }
-lemmy_utils = { version = "=0.14.0-rc.1", path = "./crates/utils" }
-lemmy_db_schema = { version = "=0.14.0-rc.1", path = "./crates/db_schema" }
-lemmy_db_views = { version = "=0.14.0-rc.1", path = "./crates/db_views" }
-lemmy_db_views_moderator = { version = "=0.14.0-rc.1", path = "./crates/db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.1", path = "./crates/db_views_actor" }
-lemmy_api_common = { version = "=0.14.0-rc.1", path = "crates/api_common" }
-lemmy_websocket = { version = "=0.14.0-rc.1", path = "./crates/websocket" }
-lemmy_routes = { version = "=0.14.0-rc.1", path = "./crates/routes" }
+lemmy_api = { version = "=0.14.0-rc.2", path = "./crates/api" }
+lemmy_api_crud = { version = "=0.14.0-rc.2", path = "./crates/api_crud" }
+lemmy_apub = { version = "=0.14.0-rc.2", path = "./crates/apub" }
+lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "./crates/apub_lib" }
+lemmy_utils = { version = "=0.14.0-rc.2", path = "./crates/utils" }
+lemmy_db_schema = { version = "=0.14.0-rc.2", path = "./crates/db_schema" }
+lemmy_db_views = { version = "=0.14.0-rc.2", path = "./crates/db_views" }
+lemmy_db_views_moderator = { version = "=0.14.0-rc.2", path = "./crates/db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "./crates/db_views_actor" }
+lemmy_api_common = { version = "=0.14.0-rc.2", path = "crates/api_common" }
+lemmy_websocket = { version = "=0.14.0-rc.2", path = "./crates/websocket" }
+lemmy_routes = { version = "=0.14.0-rc.2", path = "./crates/routes" }
 diesel = "1.4.8"
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index 45cafaa6416ca27d75da0e3a5034fd6ce9172202..980d247bbcfa533b8305082c58641c96eca3195d 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,15 +13,15 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_apub = { version = "=0.14.0-rc.1", path = "../apub" }
-lemmy_apub_lib = { version = "=0.14.0-rc.1", path = "../apub_lib" }
-lemmy_utils = { version = "=0.14.0-rc.1", path = "../utils" }
-lemmy_db_schema = { version = "=0.14.0-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.0-rc.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.14.0-rc.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.14.0-rc.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.14.0-rc.1", path = "../websocket" }
+lemmy_apub = { version = "=0.14.0-rc.2", path = "../apub" }
+lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "../apub_lib" }
+lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
+lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.14.0-rc.2", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.14.0-rc.2", path = "../api_common" }
+lemmy_websocket = { version = "=0.14.0-rc.2", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index d9f583d6504994905020dbb2b8c7dcc283a79c8d..8b276b48c793bc694258c2cfa44b64b2c430cd04 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_common"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,11 +13,11 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_db_views = { version = "=0.14.0-rc.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.14.0-rc.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.1", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.14.0-rc.1", path = "../db_schema" }
-lemmy_utils = { version = "=0.14.0-rc.1", path = "../utils" }
+lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.14.0-rc.2", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
+lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
 serde = { version = "1.0.130", features = ["derive"] }
 log = "0.4.14"
 diesel = "1.4.8"
index dda9b4ae6210e26059642fcedee0db730178f94d..50656cfb825af808a450a12319d93630f297a9ba 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_crud"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -8,15 +8,15 @@ homepage = "https://join-lemmy.org/"
 documentation = "https://join-lemmy.org/docs/en/index.html"
 
 [dependencies]
-lemmy_apub = { version = "=0.14.0-rc.1", path = "../apub" }
-lemmy_apub_lib = { version = "=0.14.0-rc.1", path = "../apub_lib" }
-lemmy_utils = { version = "=0.14.0-rc.1", path = "../utils" }
-lemmy_db_schema = { version = "=0.14.0-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.0-rc.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.14.0-rc.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.14.0-rc.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.14.0-rc.1", path = "../websocket" }
+lemmy_apub = { version = "=0.14.0-rc.2", path = "../apub" }
+lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "../apub_lib" }
+lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
+lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.14.0-rc.2", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.14.0-rc.2", path = "../api_common" }
+lemmy_websocket = { version = "=0.14.0-rc.2", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 3cc6f4ef42bec16f09f5f135a093b91df257a600..3643ae52acc95d8cbeaf0f9cc914b4ca0ed3d541 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,13 +13,13 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.14.0-rc.1", path = "../utils" }
-lemmy_apub_lib = { version = "=0.14.0-rc.1", path = "../apub_lib" }
-lemmy_db_schema = { version = "=0.14.0-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.0-rc.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.14.0-rc.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.14.0-rc.1", path = "../websocket" }
+lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
+lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "../apub_lib" }
+lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.14.0-rc.2", path = "../api_common" }
+lemmy_websocket = { version = "=0.14.0-rc.2", path = "../websocket" }
 diesel = "1.4.8"
 activitystreams = "0.7.0-alpha.11"
 bcrypt = "0.10.1"
index fbe1904fe32eef1f1fc3f358f92739dfab744e1e..f21905c75e733971c398fb5dd0a8ca3e167a73ce 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -8,8 +8,8 @@ homepage = "https://join-lemmy.org/"
 documentation = "https://join-lemmy.org/docs/en/index.html"
 
 [dependencies]
-lemmy_utils = { version = "=0.14.0-rc.1", path = "../utils" }
-lemmy_apub_lib_derive = { version = "=0.14.0-rc.1", path = "../apub_lib_derive" }
+lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
+lemmy_apub_lib_derive = { version = "=0.14.0-rc.2", path = "../apub_lib_derive" }
 activitystreams = "0.7.0-alpha.11"
 serde = { version = "1.0.130", features = ["derive"] }
 async-trait = "0.1.51"
index 159ddd523f4f6a9247389dccb1ff34e62cfe18cb..2365d359cc67a4cfc0b4e91f4c5ab52f0d1c4bde 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib_derive"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index de2c1ea1a6fb2d0738920fd5e4a249e45a1efbde..91ce4cd023db424b64b07dca4e1fda4ee5474e06 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_schema"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,8 +11,8 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.14.0-rc.1", path = "../utils" }
-lemmy_apub_lib = { version = "=0.14.0-rc.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
+lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "../apub_lib" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index b68e4b58eaf6db7ae05ed29f76063ef948301905..6241dadf2fbb48803384e181f071035a0e9ba71c 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,7 +11,7 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_db_schema = { version = "=0.14.0-rc.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.130", features = ["derive"] }
 log = "0.4.14"
index f4c4180867ce437a6db96644b14e1677c68686b4..ecbd7b99ebf80d2b276d398ebf33f889ace071c1 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_actor"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,6 +11,6 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_db_schema = { version = "=0.14.0-rc.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.130", features = ["derive"] }
index 3a4367c7799176085227b1ed62330bc218f84060..77c89d6f235da7fcaf71f7fa1ca750ecf07ac223 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_moderator"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,6 +11,6 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_db_schema = { version = "=0.14.0-rc.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.130", features = ["derive"] }
index 5243e01e54319177ef94c3941004edfcc8b77148..d6adebd35b4a23d8f7ff95abd5ae2c35eee536d0 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_routes"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,13 +11,13 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.14.0-rc.1", path = "../utils" }
-lemmy_websocket = { version = "=0.14.0-rc.1", path = "../websocket" }
-lemmy_db_views = { version = "=0.14.0-rc.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.1", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.14.0-rc.1", path = "../db_schema" }
-lemmy_api_common = { version = "=0.14.0-rc.1", path = "../api_common" }
-lemmy_apub = { version = "=0.14.0-rc.1", path = "../apub" }
+lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
+lemmy_websocket = { version = "=0.14.0-rc.2", path = "../websocket" }
+lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
+lemmy_api_common = { version = "=0.14.0-rc.2", path = "../api_common" }
+lemmy_apub = { version = "=0.14.0-rc.2", path = "../apub" }
 diesel = "1.4.8"
 actix = "0.12.0"
 actix-web = { version = "4.0.0-beta.9", default-features = false, features = ["rustls"] }
index 4f070479ced42a3629d77b585a87601bcc202da2..d24055a6772d6f2324480f684ab44f7e51183062 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_utils"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index bf09f97dcb65562380db1ec6b43fe97fd6ddbf44..59b9413ee8fa48606b37aa1a4efa568985e13c0e 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_websocket"
-version = "0.14.0-rc.1"
+version = "0.14.0-rc.2"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,11 +13,11 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.14.0-rc.1", path = "../utils" }
-lemmy_api_common = { version = "=0.14.0-rc.1", path = "../api_common" }
-lemmy_db_schema = { version = "=0.14.0-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.0-rc.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.1", path = "../db_views_actor" }
+lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
+lemmy_api_common = { version = "=0.14.0-rc.2", path = "../api_common" }
+lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
 reqwest = { version = "0.11.4", features = ["json"] }
 log = "0.4.14"
 rand = "0.8.4"