]> Untitled Git - lemmy.git/commitdiff
Version 0.16.0-rc.2
authorDessalines <tyhou13@gmx.com>
Thu, 3 Mar 2022 19:40:09 +0000 (14:40 -0500)
committerDessalines <tyhou13@gmx.com>
Thu, 3 Mar 2022 19:40:09 +0000 (14:40 -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 77e7f01c48eb78faa2d492261bff24e51386bd2d..a68dcbdc801502c85c17e6e8481dce6d8e96eeb6 100644 (file)
@@ -1830,7 +1830,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 
 [[package]]
 name = "lemmy_api"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1873,7 +1873,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_common"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "actix-web",
  "chrono",
@@ -1892,7 +1892,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_crud"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1935,7 +1935,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "activitystreams-kinds",
  "actix",
@@ -1981,7 +1981,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "actix-web",
  "anyhow",
@@ -2008,7 +2008,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib_derive"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "proc-macro2 1.0.33",
  "quote 1.0.10",
@@ -2018,7 +2018,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_schema"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "bcrypt",
  "chrono",
@@ -2040,7 +2040,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2052,7 +2052,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_actor"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2061,7 +2061,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_moderator"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2070,7 +2070,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_routes"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "actix",
  "actix-web",
@@ -2100,7 +2100,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_server"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "actix",
  "actix-rt",
@@ -2146,7 +2146,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_utils"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "actix-rt",
  "actix-web",
@@ -2186,7 +2186,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_websocket"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 dependencies = [
  "actix",
  "actix-web",
index cec521275c14aa9449b6d03566ded9e4867fb555..b5f173a19a6939df5488f16858d66b3e734e2bab 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_server"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -35,18 +35,18 @@ members = [
 ]
 
 [dependencies]
-lemmy_api = { version = "=0.16.0-rc.1", path = "./crates/api" }
-lemmy_api_crud = { version = "=0.16.0-rc.1", path = "./crates/api_crud" }
-lemmy_apub = { version = "=0.16.0-rc.1", path = "./crates/apub" }
-lemmy_apub_lib = { version = "=0.16.0-rc.1", path = "./crates/apub_lib" }
-lemmy_utils = { version = "=0.16.0-rc.1", path = "./crates/utils" }
-lemmy_db_schema = { version = "=0.16.0-rc.1", path = "./crates/db_schema" }
-lemmy_db_views = { version = "=0.16.0-rc.1", path = "./crates/db_views" }
-lemmy_db_views_moderator = { version = "=0.16.0-rc.1", path = "./crates/db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "./crates/db_views_actor" }
-lemmy_api_common = { version = "=0.16.0-rc.1", path = "crates/api_common" }
-lemmy_websocket = { version = "=0.16.0-rc.1", path = "./crates/websocket" }
-lemmy_routes = { version = "=0.16.0-rc.1", path = "./crates/routes" }
+lemmy_api = { version = "=0.16.0-rc.2", path = "./crates/api" }
+lemmy_api_crud = { version = "=0.16.0-rc.2", path = "./crates/api_crud" }
+lemmy_apub = { version = "=0.16.0-rc.2", path = "./crates/apub" }
+lemmy_apub_lib = { version = "=0.16.0-rc.2", path = "./crates/apub_lib" }
+lemmy_utils = { version = "=0.16.0-rc.2", path = "./crates/utils" }
+lemmy_db_schema = { version = "=0.16.0-rc.2", path = "./crates/db_schema" }
+lemmy_db_views = { version = "=0.16.0-rc.2", path = "./crates/db_views" }
+lemmy_db_views_moderator = { version = "=0.16.0-rc.2", path = "./crates/db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.2", path = "./crates/db_views_actor" }
+lemmy_api_common = { version = "=0.16.0-rc.2", path = "crates/api_common" }
+lemmy_websocket = { version = "=0.16.0-rc.2", path = "./crates/websocket" }
+lemmy_routes = { version = "=0.16.0-rc.2", path = "./crates/routes" }
 diesel = "1.4.8"
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index 1a2bb7b28ac147eaefb4b7496db971b81ff43312..93abc16b9f80894f7c3758454d8a2de832b3cf92 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 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.16.0-rc.1", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.0-rc.1", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.0-rc.1", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.0-rc.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.0-rc.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.0-rc.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.0-rc.1", path = "../websocket" }
+lemmy_apub = { version = "=0.16.0-rc.2", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.0-rc.2", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.0-rc.2", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.0-rc.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.0-rc.2", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.0-rc.2", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.2", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.0-rc.2", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.0-rc.2", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 6854021de7a0b204cfb69b4d1351cf5f3bc5aed9..be2ad9d4a078871ec73b87371c3f1aae64746f3e 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_common"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 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.16.0-rc.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.0-rc.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
-lemmy_utils = { version = "=0.16.0-rc.1", path = "../utils" }
+lemmy_db_views = { version = "=0.16.0-rc.2", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.0-rc.2", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.2", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.0-rc.2", path = "../db_schema" }
+lemmy_utils = { version = "=0.16.0-rc.2", path = "../utils" }
 serde = { version = "1.0.131", features = ["derive"] }
 diesel = "1.4.8"
 actix-web = { version = "4.0.0", default-features = false, features = ["cookies"] }
index 3cb7389d15af8bc2318251a2c3816d532f56ad93..85f90633093662840a424fb2eb6f07a6d1bc7d0a 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_crud"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 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.16.0-rc.1", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.0-rc.1", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.0-rc.1", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.0-rc.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.0-rc.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.0-rc.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.0-rc.1", path = "../websocket" }
+lemmy_apub = { version = "=0.16.0-rc.2", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.0-rc.2", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.0-rc.2", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.0-rc.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.0-rc.2", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.0-rc.2", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.2", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.0-rc.2", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.0-rc.2", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index e7d6a9850860451869eb6b44c5b9359e3cbeced7..44a88a2f5983ce55adc6d1f16a6b8b7df80f049c 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 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.16.0-rc.1", path = "../utils" }
-lemmy_apub_lib = { version = "=0.16.0-rc.1", path = "../apub_lib" }
-lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.0-rc.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.0-rc.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.0-rc.1", path = "../websocket" }
+lemmy_utils = { version = "=0.16.0-rc.2", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.0-rc.2", path = "../apub_lib" }
+lemmy_db_schema = { version = "=0.16.0-rc.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.0-rc.2", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.2", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.0-rc.2", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.0-rc.2", path = "../websocket" }
 diesel = "1.4.8"
 activitystreams-kinds = "0.1.2"
 bcrypt = "0.10.1"
index 48303b028cd9dc480b62e6c48d6e5678effcd8f8..0da8552955012150fd5bc08d6e3aa90b070fac9e 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 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.16.0-rc.1", path = "../utils" }
-lemmy_apub_lib_derive = { version = "=0.16.0-rc.1", path = "../apub_lib_derive" }
+lemmy_utils = { version = "=0.16.0-rc.2", path = "../utils" }
+lemmy_apub_lib_derive = { version = "=0.16.0-rc.2", path = "../apub_lib_derive" }
 chrono = "0.4.19"
 serde = { version = "1.0.131", features = ["derive"] }
 async-trait = "0.1.52"
index c807d1eb0dbcc12aa26e8a32f7ae82dca9f4f18e..85a9ac74cbac88519b22018d67aa6b049f392acf 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib_derive"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 0ecd78702001305ceea4d3a7673825eed8c16a75..71d23bf365b6c52dcbdc2125780e06d2c66a2e7f 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_schema"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,8 +13,8 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.16.0-rc.1", path = "../utils" }
-lemmy_apub_lib = { version = "=0.16.0-rc.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.0-rc.2", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.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 ccdbf34758845ce9ddd4d70b59459297aa642e2a..6739b1136804a13877411636b7356f27cd54f78e 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 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.16.0-rc.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.0-rc.2", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.131", features = ["derive"] }
 tracing = "0.1.29"
index a69334782c98914d622c1c6f0a3be74ab8a40f6e..c78c0359bbe023954bd1c6240b273ceae190a356 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_actor"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 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.16.0-rc.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.0-rc.2", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.131", features = ["derive"] }
index 205e11af4887a80b812498fa347dacd85987a33b..a67a8e788bc0769c3febf2f3af80f41b557d8231 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_moderator"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 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.16.0-rc.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.0-rc.2", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.131", features = ["derive"] }
index dace264fcc4c0da9e6dfafd3c01fc270caa4e0fa..29b1f56adbf499397ab60a04e7bbed8b80118f81 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_routes"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 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.16.0-rc.1", path = "../utils" }
-lemmy_websocket = { version = "=0.16.0-rc.1", path = "../websocket" }
-lemmy_db_views = { version = "=0.16.0-rc.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
-lemmy_api_common = { version = "=0.16.0-rc.1", path = "../api_common" }
-lemmy_apub = { version = "=0.16.0-rc.1", path = "../apub" }
+lemmy_utils = { version = "=0.16.0-rc.2", path = "../utils" }
+lemmy_websocket = { version = "=0.16.0-rc.2", path = "../websocket" }
+lemmy_db_views = { version = "=0.16.0-rc.2", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.2", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.0-rc.2", path = "../db_schema" }
+lemmy_api_common = { version = "=0.16.0-rc.2", path = "../api_common" }
+lemmy_apub = { version = "=0.16.0-rc.2", path = "../apub" }
 diesel = "1.4.8"
 actix = "0.13.0"
 actix-web = { version = "4.0.0", default-features = false, features = ["rustls"] }
index 1b69e98f3fa36d879ca443a47b3ae0cb68646023..39c64217b5de7e8d33ae64a38ba398ecad29980b 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_utils"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 9761836c8769e79f83b642bff60a26cbe2ef0322..efd3bcd40d6974dca983d70c6f6053387b2d1084 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_websocket"
-version = "0.16.0-rc.1"
+version = "0.16.0-rc.2"
 edition = "2021"
 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.16.0-rc.1", path = "../utils" }
-lemmy_api_common = { version = "=0.16.0-rc.1", path = "../api_common" }
-lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.0-rc.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "../db_views_actor" }
+lemmy_utils = { version = "=0.16.0-rc.2", path = "../utils" }
+lemmy_api_common = { version = "=0.16.0-rc.2", path = "../api_common" }
+lemmy_db_schema = { version = "=0.16.0-rc.2", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.0-rc.2", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.2", path = "../db_views_actor" }
 reqwest = { version = "0.11.7", features = ["json"] }
 reqwest-middleware = "0.1.3"
 tracing = "0.1.29"