Skip to content

Commit

Permalink
Version 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines committed Mar 8, 2022
1 parent 82dec19 commit 05f20da
Show file tree
Hide file tree
Showing 18 changed files with 97 additions and 97 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_server"
version = "0.16.0-rc.4"
version = "0.16.0"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand Down Expand Up @@ -35,18 +35,18 @@ members = [
]

[dependencies]
lemmy_api = { version = "=0.16.0-rc.4", path = "./crates/api" }
lemmy_api_crud = { version = "=0.16.0-rc.4", path = "./crates/api_crud" }
lemmy_apub = { version = "=0.16.0-rc.4", path = "./crates/apub" }
lemmy_apub_lib = { version = "=0.16.0-rc.4", path = "./crates/apub_lib" }
lemmy_utils = { version = "=0.16.0-rc.4", path = "./crates/utils" }
lemmy_db_schema = { version = "=0.16.0-rc.4", path = "./crates/db_schema" }
lemmy_db_views = { version = "=0.16.0-rc.4", path = "./crates/db_views" }
lemmy_db_views_moderator = { version = "=0.16.0-rc.4", path = "./crates/db_views_moderator" }
lemmy_db_views_actor = { version = "=0.16.0-rc.4", path = "./crates/db_views_actor" }
lemmy_api_common = { version = "=0.16.0-rc.4", path = "crates/api_common" }
lemmy_websocket = { version = "=0.16.0-rc.4", path = "./crates/websocket" }
lemmy_routes = { version = "=0.16.0-rc.4", path = "./crates/routes" }
lemmy_api = { version = "=0.16.0", path = "./crates/api" }
lemmy_api_crud = { version = "=0.16.0", path = "./crates/api_crud" }
lemmy_apub = { version = "=0.16.0", path = "./crates/apub" }
lemmy_apub_lib = { version = "=0.16.0", path = "./crates/apub_lib" }
lemmy_utils = { version = "=0.16.0", path = "./crates/utils" }
lemmy_db_schema = { version = "=0.16.0", path = "./crates/db_schema" }
lemmy_db_views = { version = "=0.16.0", path = "./crates/db_views" }
lemmy_db_views_moderator = { version = "=0.16.0", path = "./crates/db_views_moderator" }
lemmy_db_views_actor = { version = "=0.16.0", path = "./crates/db_views_actor" }
lemmy_api_common = { version = "=0.16.0", path = "crates/api_common" }
lemmy_websocket = { version = "=0.16.0", path = "./crates/websocket" }
lemmy_routes = { version = "=0.16.0", path = "./crates/routes" }
diesel = "1.4.8"
diesel_migrations = "1.4.0"
chrono = { version = "0.4.19", features = ["serde"] }
Expand Down
20 changes: 10 additions & 10 deletions crates/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_api"
version = "0.16.0-rc.4"
version = "0.16.0"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -13,15 +13,15 @@ path = "src/lib.rs"
doctest = false

[dependencies]
lemmy_apub = { version = "=0.16.0-rc.4", path = "../apub" }
lemmy_apub_lib = { version = "=0.16.0-rc.4", path = "../apub_lib" }
lemmy_utils = { version = "=0.16.0-rc.4", path = "../utils" }
lemmy_db_schema = { version = "=0.16.0-rc.4", path = "../db_schema" }
lemmy_db_views = { version = "=0.16.0-rc.4", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.16.0-rc.4", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.16.0-rc.4", path = "../db_views_actor" }
lemmy_api_common = { version = "=0.16.0-rc.4", path = "../api_common" }
lemmy_websocket = { version = "=0.16.0-rc.4", path = "../websocket" }
lemmy_apub = { version = "=0.16.0", path = "../apub" }
lemmy_apub_lib = { version = "=0.16.0", path = "../apub_lib" }
lemmy_utils = { version = "=0.16.0", path = "../utils" }
lemmy_db_schema = { version = "=0.16.0", path = "../db_schema" }
lemmy_db_views = { version = "=0.16.0", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.16.0", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.16.0", path = "../db_views_actor" }
lemmy_api_common = { version = "=0.16.0", path = "../api_common" }
lemmy_websocket = { version = "=0.16.0", path = "../websocket" }
diesel = "1.4.8"
bcrypt = "0.10.1"
chrono = { version = "0.4.19", features = ["serde"] }
Expand Down
12 changes: 6 additions & 6 deletions crates/api_common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_api_common"
version = "0.16.0-rc.4"
version = "0.16.0"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -13,11 +13,11 @@ path = "src/lib.rs"
doctest = false

[dependencies]
lemmy_db_views = { version = "=0.16.0-rc.4", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.16.0-rc.4", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.16.0-rc.4", path = "../db_views_actor" }
lemmy_db_schema = { version = "=0.16.0-rc.4", path = "../db_schema" }
lemmy_utils = { version = "=0.16.0-rc.4", path = "../utils" }
lemmy_db_views = { version = "=0.16.0", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.16.0", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.16.0", path = "../db_views_actor" }
lemmy_db_schema = { version = "=0.16.0", path = "../db_schema" }
lemmy_utils = { version = "=0.16.0", path = "../utils" }
serde = { version = "1.0.131", features = ["derive"] }
diesel = "1.4.8"
actix-web = { version = "4.0.0", default-features = false, features = ["cookies"] }
Expand Down
20 changes: 10 additions & 10 deletions crates/api_crud/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[package]
name = "lemmy_api_crud"
version = "0.16.0-rc.4"
version = "0.16.0"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
homepage = "https://join-lemmy.org/"
documentation = "https://join-lemmy.org/docs/en/index.html"

[dependencies]
lemmy_apub = { version = "=0.16.0-rc.4", path = "../apub" }
lemmy_apub_lib = { version = "=0.16.0-rc.4", path = "../apub_lib" }
lemmy_utils = { version = "=0.16.0-rc.4", path = "../utils" }
lemmy_db_schema = { version = "=0.16.0-rc.4", path = "../db_schema" }
lemmy_db_views = { version = "=0.16.0-rc.4", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.16.0-rc.4", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.16.0-rc.4", path = "../db_views_actor" }
lemmy_api_common = { version = "=0.16.0-rc.4", path = "../api_common" }
lemmy_websocket = { version = "=0.16.0-rc.4", path = "../websocket" }
lemmy_apub = { version = "=0.16.0", path = "../apub" }
lemmy_apub_lib = { version = "=0.16.0", path = "../apub_lib" }
lemmy_utils = { version = "=0.16.0", path = "../utils" }
lemmy_db_schema = { version = "=0.16.0", path = "../db_schema" }
lemmy_db_views = { version = "=0.16.0", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.16.0", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.16.0", path = "../db_views_actor" }
lemmy_api_common = { version = "=0.16.0", path = "../api_common" }
lemmy_websocket = { version = "=0.16.0", path = "../websocket" }
diesel = "1.4.8"
bcrypt = "0.10.1"
chrono = { version = "0.4.19", features = ["serde"] }
Expand Down
16 changes: 8 additions & 8 deletions crates/apub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_apub"
version = "0.16.0-rc.4"
version = "0.16.0"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -13,13 +13,13 @@ path = "src/lib.rs"
doctest = false

[dependencies]
lemmy_utils = { version = "=0.16.0-rc.4", path = "../utils" }
lemmy_apub_lib = { version = "=0.16.0-rc.4", path = "../apub_lib" }
lemmy_db_schema = { version = "=0.16.0-rc.4", path = "../db_schema" }
lemmy_db_views = { version = "=0.16.0-rc.4", path = "../db_views" }
lemmy_db_views_actor = { version = "=0.16.0-rc.4", path = "../db_views_actor" }
lemmy_api_common = { version = "=0.16.0-rc.4", path = "../api_common" }
lemmy_websocket = { version = "=0.16.0-rc.4", path = "../websocket" }
lemmy_utils = { version = "=0.16.0", path = "../utils" }
lemmy_apub_lib = { version = "=0.16.0", path = "../apub_lib" }
lemmy_db_schema = { version = "=0.16.0", path = "../db_schema" }
lemmy_db_views = { version = "=0.16.0", path = "../db_views" }
lemmy_db_views_actor = { version = "=0.16.0", path = "../db_views_actor" }
lemmy_api_common = { version = "=0.16.0", path = "../api_common" }
lemmy_websocket = { version = "=0.16.0", path = "../websocket" }
diesel = "1.4.8"
activitystreams-kinds = "0.1.2"
bcrypt = "0.10.1"
Expand Down
6 changes: 3 additions & 3 deletions crates/apub_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "lemmy_apub_lib"
version = "0.16.0-rc.4"
version = "0.16.0"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
homepage = "https://join-lemmy.org/"
documentation = "https://join-lemmy.org/docs/en/index.html"

[dependencies]
lemmy_utils = { version = "=0.16.0-rc.4", path = "../utils" }
lemmy_apub_lib_derive = { version = "=0.16.0-rc.4", path = "../apub_lib_derive" }
lemmy_utils = { version = "=0.16.0", path = "../utils" }
lemmy_apub_lib_derive = { version = "=0.16.0", path = "../apub_lib_derive" }
chrono = "0.4.19"
serde = { version = "1.0.131", features = ["derive"] }
async-trait = "0.1.52"
Expand Down
2 changes: 1 addition & 1 deletion crates/apub_lib_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_apub_lib_derive"
version = "0.16.0-rc.4"
version = "0.16.0"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/db_schema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_db_schema"
version = "0.16.0-rc.4"
version = "0.16.0"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -13,8 +13,8 @@ path = "src/lib.rs"
doctest = false

[dependencies]
lemmy_utils = { version = "=0.16.0-rc.4", path = "../utils" }
lemmy_apub_lib = { version = "=0.16.0-rc.4", path = "../apub_lib" }
lemmy_utils = { version = "=0.16.0", path = "../utils" }
lemmy_apub_lib = { version = "=0.16.0", 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"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/db_views/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_db_views"
version = "0.16.0-rc.4"
version = "0.16.0"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -11,7 +11,7 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
doctest = false

[dependencies]
lemmy_db_schema = { version = "=0.16.0-rc.4", path = "../db_schema" }
lemmy_db_schema = { version = "=0.16.0", 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"
Expand Down
4 changes: 2 additions & 2 deletions crates/db_views_actor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_db_views_actor"
version = "0.16.0-rc.4"
version = "0.16.0"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -11,6 +11,6 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
doctest = false

[dependencies]
lemmy_db_schema = { version = "=0.16.0-rc.4", path = "../db_schema" }
lemmy_db_schema = { version = "=0.16.0", path = "../db_schema" }
diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
serde = { version = "1.0.131", features = ["derive"] }
4 changes: 2 additions & 2 deletions crates/db_views_moderator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_db_views_moderator"
version = "0.16.0-rc.4"
version = "0.16.0"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -11,6 +11,6 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
doctest = false

[dependencies]
lemmy_db_schema = { version = "=0.16.0-rc.4", path = "../db_schema" }
lemmy_db_schema = { version = "=0.16.0", path = "../db_schema" }
diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
serde = { version = "1.0.131", features = ["derive"] }
Loading

0 comments on commit 05f20da

Please sign in to comment.