]> Untitled Git - lemmy.git/commitdiff
Fix publish
authorDessalines <tyhou13@gmx.com>
Thu, 26 May 2022 20:10:36 +0000 (16:10 -0400)
committerDessalines <tyhou13@gmx.com>
Thu, 26 May 2022 20:10:36 +0000 (16:10 -0400)
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 4de5acca240c74d2a1e7a82dd8e1ec0e9ac32bd7..c15e5378eb52b4f884c65c25d180b8c80f9cd7f5 100644 (file)
@@ -1762,7 +1762,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 
 [[package]]
 name = "lemmy_api"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "actix-web",
  "anyhow",
@@ -1789,7 +1789,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_common"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "actix-rt",
  "actix-web",
@@ -1813,7 +1813,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_crud"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "actix-web",
  "async-trait",
@@ -1835,7 +1835,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "activitystreams-kinds",
  "actix",
@@ -1875,7 +1875,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "actix-web",
  "anyhow",
@@ -1902,7 +1902,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib_derive"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "proc-macro2 1.0.36",
  "quote 1.0.17",
@@ -1912,7 +1912,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_schema"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "bcrypt",
  "chrono",
@@ -1934,7 +1934,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1945,7 +1945,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_actor"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1954,7 +1954,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_moderator"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1963,7 +1963,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_routes"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "actix-web",
  "anyhow",
@@ -1990,7 +1990,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_server"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "actix",
  "actix-web",
@@ -2026,7 +2026,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_utils"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "actix-web",
  "anyhow",
@@ -2062,7 +2062,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_websocket"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 dependencies = [
  "actix",
  "actix-web",
index 117c1c3b6faa9ab50b2d4914dde328493ff5a61e..b302eefeaf2a2033032383f598c7fed9bb8c7278 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_server"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -36,15 +36,15 @@ members = [
 ]
 
 [dependencies]
-lemmy_api = { version = "=0.16.3", path = "./crates/api" }
-lemmy_api_crud = { version = "=0.16.3", path = "./crates/api_crud" }
-lemmy_apub = { version = "=0.16.3", path = "./crates/apub" }
-lemmy_apub_lib = { version = "=0.16.3", path = "./crates/apub_lib" }
-lemmy_utils = { version = "=0.16.3", path = "./crates/utils" }
-lemmy_db_schema = { version = "=0.16.3", path = "./crates/db_schema" }
-lemmy_api_common = { version = "=0.16.3", path = "crates/api_common" }
-lemmy_websocket = { version = "=0.16.3", path = "./crates/websocket" }
-lemmy_routes = { version = "=0.16.3", path = "./crates/routes" }
+lemmy_api = { version = "=0.16.4-rc.11", path = "./crates/api" }
+lemmy_api_crud = { version = "=0.16.4-rc.11", path = "./crates/api_crud" }
+lemmy_apub = { version = "=0.16.4-rc.11", path = "./crates/apub" }
+lemmy_apub_lib = { version = "=0.16.4-rc.11", path = "./crates/apub_lib" }
+lemmy_utils = { version = "=0.16.4-rc.11", path = "./crates/utils" }
+lemmy_db_schema = { version = "=0.16.4-rc.11", path = "./crates/db_schema" }
+lemmy_api_common = { version = "=0.16.4-rc.11", path = "crates/api_common" }
+lemmy_websocket = { version = "=0.16.4-rc.11", path = "./crates/websocket" }
+lemmy_routes = { version = "=0.16.4-rc.11", path = "./crates/routes" }
 diesel = "1.4.8"
 diesel_migrations = "1.4.0"
 serde = { version = "1.0.136", features = ["derive"] }
index 4752bfa4e48d7662e9375cbe9a89ae922311d886..1bc9db29031bf7407e71e077fadb08aa49b85285 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 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.3", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.3", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.3", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.3", path = "../db_schema", features = ["full"] }
-lemmy_db_views = { version = "=0.16.3", path = "../db_views", features = ["full"] }
-lemmy_db_views_moderator = { version = "=0.16.3", path = "../db_views_moderator", features = ["full"] }
-lemmy_db_views_actor = { version = "=0.16.3", path = "../db_views_actor", features = ["full"] }
-lemmy_api_common = { version = "=0.16.3", path = "../api_common", features = ["full"] }
-lemmy_websocket = { version = "=0.16.3", path = "../websocket" }
+lemmy_apub = { version = "=0.16.4-rc.11", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.4-rc.11", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.4-rc.11", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.4-rc.11", path = "../db_schema", features = ["full"] }
+lemmy_db_views = { version = "=0.16.4-rc.11", path = "../db_views", features = ["full"] }
+lemmy_db_views_moderator = { version = "=0.16.4-rc.11", path = "../db_views_moderator", features = ["full"] }
+lemmy_db_views_actor = { version = "=0.16.4-rc.11", path = "../db_views_actor", features = ["full"] }
+lemmy_api_common = { version = "=0.16.4-rc.11", path = "../api_common", features = ["full"] }
+lemmy_websocket = { version = "=0.16.4-rc.11", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.12.1"
 chrono = { version = "0.4.19", features = ["serde"], default-features = false }
index 2ff49922722612620606459797293b760d1cf0e6..23d2cc18cdc5a8fab46eba94707349544b347894 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_common"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -18,11 +18,11 @@ full = ["diesel", "tracing", "rosetta-i18n", "chrono", "actix-web", "lemmy_utils
     "percent-encoding", "encoding", "reqwest-middleware", "webpage"]
 
 [dependencies]
-lemmy_db_views = { version = "=0.16.3", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.3", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.3", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.3", path = "../db_schema", default-features = false }
-lemmy_utils = { version = "=0.16.3", path = "../utils", optional = true }
+lemmy_db_views = { version = "=0.16.4-rc.11", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.4-rc.11", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.4-rc.11", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.4-rc.11", path = "../db_schema", default-features = false }
+lemmy_utils = { version = "=0.16.4-rc.11", path = "../utils", optional = true }
 serde = { version = "1.0.136", features = ["derive"] }
 url = "2.2.2"
 actix-web = { version = "4.0.1", default-features = false, features = ["cookies"], optional = true }
index f808ea63b5753e01835de31920f86361d426a079..14a1cf1f32c7a71774aefd23506c5b17ff2c72dc 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_crud"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -8,14 +8,14 @@ homepage = "https://join-lemmy.org/"
 documentation = "https://join-lemmy.org/docs/en/index.html"
 
 [dependencies]
-lemmy_apub = { version = "=0.16.3", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.3", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.3", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.3", path = "../db_schema", features = ["full"] }
-lemmy_db_views = { version = "=0.16.3", path = "../db_views", features = ["full"] }
-lemmy_db_views_actor = { version = "=0.16.3", path = "../db_views_actor", features = ["full"] }
-lemmy_api_common = { version = "=0.16.3", path = "../api_common", features = ["full"] }
-lemmy_websocket = { version = "=0.16.3", path = "../websocket" }
+lemmy_apub = { version = "=0.16.4-rc.11", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.4-rc.11", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.4-rc.11", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.4-rc.11", path = "../db_schema", features = ["full"] }
+lemmy_db_views = { version = "=0.16.4-rc.11", path = "../db_views", features = ["full"] }
+lemmy_db_views_actor = { version = "=0.16.4-rc.11", path = "../db_views_actor", features = ["full"] }
+lemmy_api_common = { version = "=0.16.4-rc.11", path = "../api_common", features = ["full"] }
+lemmy_websocket = { version = "=0.16.4-rc.11", path = "../websocket" }
 bcrypt = "0.12.1"
 serde_json = { version = "1.0.79", features = ["preserve_order"] }
 serde = { version = "1.0.136", features = ["derive"] }
index 999964e2b143c9869fa395625376623f55745d68..394a98271af7bf17c086a877c20eaa974951fb42 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 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.3", path = "../utils" }
-lemmy_apub_lib = { version = "=0.16.3", path = "../apub_lib" }
-lemmy_db_schema = { version = "=0.16.3", path = "../db_schema", features = ["full"] }
-lemmy_db_views = { version = "=0.16.3", path = "../db_views", features = ["full"] }
-lemmy_db_views_actor = { version = "=0.16.3", path = "../db_views_actor", features = ["full"] }
-lemmy_api_common = { version = "=0.16.3", path = "../api_common", features = ["full"] }
-lemmy_websocket = { version = "=0.16.3", path = "../websocket" }
+lemmy_utils = { version = "=0.16.4-rc.11", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.4-rc.11", path = "../apub_lib" }
+lemmy_db_schema = { version = "=0.16.4-rc.11", path = "../db_schema", features = ["full"] }
+lemmy_db_views = { version = "=0.16.4-rc.11", path = "../db_views", features = ["full"] }
+lemmy_db_views_actor = { version = "=0.16.4-rc.11", path = "../db_views_actor", features = ["full"] }
+lemmy_api_common = { version = "=0.16.4-rc.11", path = "../api_common", features = ["full"] }
+lemmy_websocket = { version = "=0.16.4-rc.11", path = "../websocket" }
 diesel = "1.4.8"
 activitystreams-kinds = "0.2.1"
 chrono = { version = "0.4.19", features = ["serde"], default-features = false }
index 366ee7a0f27406e7c6555857dd566823e960f085..801de01167c74aa592da2e5565f449d7ff8c0947 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -8,9 +8,9 @@ homepage = "https://join-lemmy.org/"
 documentation = "https://join-lemmy.org/docs/en/index.html"
 
 [dependencies]
-lemmy_utils = { version = "=0.16.3", path = "../utils" }
-lemmy_apub_lib_derive = { version = "=0.16.3", path = "../apub_lib_derive" }
-chrono = { version = "0.4.19", default-features = false }
+lemmy_utils = { version = "=0.16.4-rc.11", path = "../utils" }
+lemmy_apub_lib_derive = { version = "=0.16.4-rc.11", path = "../apub_lib_derive" }
+chrono = { version = "0.4.19", features = ["clock"], default-features = false }
 serde = { version = "1.0.136", features = ["derive"] }
 async-trait = "0.1.53"
 url = { version = "2.2.2", features = ["serde"] }
index 01e7fef77ee99a3466dab3623a997130f705561d..0dac48d8997e00e545043d2cdfe45ceee1464c46 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib_derive"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index eae821093534e5626ae43f7041bb2837d4ddada2..5e37d74185a38f916e66a5afe17a58937e7b919d 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_schema"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -23,8 +23,8 @@ url = { version = "2.2.2", features = ["serde"] }
 strum =  "0.24.0"
 strum_macros = "0.24.0"
 serde_json = { version = "1.0.79", features = ["preserve_order"], optional = true }
-lemmy_apub_lib = { version = "=0.16.3", path = "../apub_lib", optional = true }
-lemmy_utils = { version = "=0.16.3", path = "../utils", optional = true }
+lemmy_apub_lib = { version = "=0.16.4-rc.11", path = "../apub_lib", optional = true }
+lemmy_utils = { version = "=0.16.4-rc.11", path = "../utils", optional = true }
 bcrypt = { version = "0.12.1", optional = true }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
 diesel-derive-newtype = { version = "0.1.2", optional = true }
index e43113717ea5b65c04538035f297b6f3e7865baf..143b1d551eb80d0b05f4891ad9efe654ba1988cb 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -14,7 +14,7 @@ doctest = false
 full = ["lemmy_db_schema/full", "diesel", "tracing"]
 
 [dependencies]
-lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.4-rc.11", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
 serde = { version = "1.0.136", features = ["derive"] }
 tracing = { version = "0.1.32", optional = true }
index b8810064fc136d41c08e6e1689aab7d5310bb7a3..6aeb2d79ab6898af0b46cadc4a5e46d2a107324d 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_actor"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -14,6 +14,6 @@ doctest = false
 full = ["lemmy_db_schema/full", "diesel"]
 
 [dependencies]
-lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.4-rc.11", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
 serde = { version = "1.0.136", features = ["derive"] }
index 110baaeb572f9746a6116445bcf511936fbd6a84..0a75ce55c46ee497a7bfb25b65e781883e93ddf8 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_moderator"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -14,6 +14,6 @@ doctest = false
 full = ["lemmy_db_schema/full", "diesel"]
 
 [dependencies]
-lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.4-rc.11", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
 serde = { version = "1.0.136", features = ["derive"] }
index 2ade2385fbd86387938f8d813452e7ec71dba909..400ad2c610f08b624a3f35c168610d25ad0d58a7 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_routes"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 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.3", path = "../utils" }
-lemmy_websocket = { version = "=0.16.3", path = "../websocket" }
-lemmy_db_views = { version = "=0.16.3", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.3", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.3", path = "../db_schema" }
-lemmy_api_common = { version = "=0.16.3", path = "../api_common" }
-lemmy_apub = { version = "=0.16.3", path = "../apub" }
+lemmy_utils = { version = "=0.16.4-rc.11", path = "../utils" }
+lemmy_websocket = { version = "=0.16.4-rc.11", path = "../websocket" }
+lemmy_db_views = { version = "=0.16.4-rc.11", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.4-rc.11", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.4-rc.11", path = "../db_schema" }
+lemmy_api_common = { version = "=0.16.4-rc.11", path = "../api_common" }
+lemmy_apub = { version = "=0.16.4-rc.11", path = "../apub" }
 diesel = "1.4.8"
 actix-web = { version = "4.0.1", default-features = false, features = ["rustls"] }
 anyhow = "1.0.56"
index d808d63f553ceb1643ddacae4d12235eb1d00382..eb06aeca0959208c31c4b755ed35b051ae6ed943 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_utils"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -14,7 +14,7 @@ doctest = false
 
 [dependencies]
 regex = "1.5.5"
-chrono = { version = "0.4.19", features = ["serde"], default-features = false }
+chrono = { version = "0.4.19", features = ["serde", "clock"], default-features = false }
 lettre = "0.10.0-rc.6"
 tracing = "0.1.32"
 tracing-error = "0.2.0"
index 79f51eb3c602896342edc62c10c189b3409a1db1..693b431f35a4d8e7ffe0bb61b5dc810300aff33d 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_websocket"
-version = "0.16.3"
+version = "0.16.4-rc.11"
 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.3", path = "../utils" }
-lemmy_api_common = { version = "=0.16.3", path = "../api_common" }
-lemmy_db_schema = { version = "=0.16.3", path = "../db_schema", features = ["full"] }
-lemmy_db_views = { version = "=0.16.3", path = "../db_views", features = ["full"] }
-lemmy_db_views_actor = { version = "=0.16.3", path = "../db_views_actor", features = ["full"] }
+lemmy_utils = { version = "=0.16.4-rc.11", path = "../utils" }
+lemmy_api_common = { version = "=0.16.4-rc.11", path = "../api_common" }
+lemmy_db_schema = { version = "=0.16.4-rc.11", path = "../db_schema", features = ["full"] }
+lemmy_db_views = { version = "=0.16.4-rc.11", path = "../db_views", features = ["full"] }
+lemmy_db_views_actor = { version = "=0.16.4-rc.11", path = "../db_views_actor", features = ["full"] }
 reqwest-middleware = "0.1.5"
 tracing = "0.1.32"
 rand = "0.8.5"