mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-09 09:52:10 +00:00
Version 0.19.0-rc.8
This commit is contained in:
parent
fc07ba2d3b
commit
7972dd0fcf
24
Cargo.lock
generated
24
Cargo.lock
generated
|
@ -2537,7 +2537,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_api"
|
||||
version = "0.19.0-rc.7"
|
||||
version = "0.19.0-rc.8"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"actix-web",
|
||||
|
@ -2565,7 +2565,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_api_common"
|
||||
version = "0.19.0-rc.7"
|
||||
version = "0.19.0-rc.8"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"actix-web",
|
||||
|
@ -2599,7 +2599,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_api_crud"
|
||||
version = "0.19.0-rc.7"
|
||||
version = "0.19.0-rc.8"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"actix-web",
|
||||
|
@ -2617,7 +2617,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_apub"
|
||||
version = "0.19.0-rc.7"
|
||||
version = "0.19.0-rc.8"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"actix-web",
|
||||
|
@ -2656,7 +2656,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_db_schema"
|
||||
version = "0.19.0-rc.7"
|
||||
version = "0.19.0-rc.8"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"async-trait",
|
||||
|
@ -2692,7 +2692,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_db_views"
|
||||
version = "0.19.0-rc.7"
|
||||
version = "0.19.0-rc.8"
|
||||
dependencies = [
|
||||
"actix-web",
|
||||
"diesel",
|
||||
|
@ -2710,7 +2710,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_db_views_actor"
|
||||
version = "0.19.0-rc.7"
|
||||
version = "0.19.0-rc.8"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"diesel",
|
||||
|
@ -2727,7 +2727,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_db_views_moderator"
|
||||
version = "0.19.0-rc.7"
|
||||
version = "0.19.0-rc.8"
|
||||
dependencies = [
|
||||
"diesel",
|
||||
"diesel-async 0.3.2",
|
||||
|
@ -2739,7 +2739,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_federate"
|
||||
version = "0.19.0-rc.7"
|
||||
version = "0.19.0-rc.8"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"anyhow",
|
||||
|
@ -2762,7 +2762,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_routes"
|
||||
version = "0.19.0-rc.7"
|
||||
version = "0.19.0-rc.8"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"actix-web",
|
||||
|
@ -2786,7 +2786,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_server"
|
||||
version = "0.19.0-rc.7"
|
||||
version = "0.19.0-rc.8"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"actix-cors",
|
||||
|
@ -2827,7 +2827,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_utils"
|
||||
version = "0.19.0-rc.7"
|
||||
version = "0.19.0-rc.8"
|
||||
dependencies = [
|
||||
"actix-web",
|
||||
"anyhow",
|
||||
|
|
24
Cargo.toml
24
Cargo.toml
|
@ -1,5 +1,5 @@
|
|||
[workspace.package]
|
||||
version = "0.19.0-rc.7"
|
||||
version = "0.19.0-rc.8"
|
||||
edition = "2021"
|
||||
description = "A link aggregator for the fediverse"
|
||||
license = "AGPL-3.0"
|
||||
|
@ -84,16 +84,16 @@ unused_self = "deny"
|
|||
unwrap_used = "deny"
|
||||
|
||||
[workspace.dependencies]
|
||||
lemmy_api = { version = "=0.19.0-rc.7", path = "./crates/api" }
|
||||
lemmy_api_crud = { version = "=0.19.0-rc.7", path = "./crates/api_crud" }
|
||||
lemmy_apub = { version = "=0.19.0-rc.7", path = "./crates/apub" }
|
||||
lemmy_utils = { version = "=0.19.0-rc.7", path = "./crates/utils" }
|
||||
lemmy_db_schema = { version = "=0.19.0-rc.7", path = "./crates/db_schema" }
|
||||
lemmy_api_common = { version = "=0.19.0-rc.7", path = "./crates/api_common" }
|
||||
lemmy_routes = { version = "=0.19.0-rc.7", path = "./crates/routes" }
|
||||
lemmy_db_views = { version = "=0.19.0-rc.7", path = "./crates/db_views" }
|
||||
lemmy_db_views_actor = { version = "=0.19.0-rc.7", path = "./crates/db_views_actor" }
|
||||
lemmy_db_views_moderator = { version = "=0.19.0-rc.7", path = "./crates/db_views_moderator" }
|
||||
lemmy_api = { version = "=0.19.0-rc.8", path = "./crates/api" }
|
||||
lemmy_api_crud = { version = "=0.19.0-rc.8", path = "./crates/api_crud" }
|
||||
lemmy_apub = { version = "=0.19.0-rc.8", path = "./crates/apub" }
|
||||
lemmy_utils = { version = "=0.19.0-rc.8", path = "./crates/utils" }
|
||||
lemmy_db_schema = { version = "=0.19.0-rc.8", path = "./crates/db_schema" }
|
||||
lemmy_api_common = { version = "=0.19.0-rc.8", path = "./crates/api_common" }
|
||||
lemmy_routes = { version = "=0.19.0-rc.8", path = "./crates/routes" }
|
||||
lemmy_db_views = { version = "=0.19.0-rc.8", path = "./crates/db_views" }
|
||||
lemmy_db_views_actor = { version = "=0.19.0-rc.8", path = "./crates/db_views_actor" }
|
||||
lemmy_db_views_moderator = { version = "=0.19.0-rc.8", path = "./crates/db_views_moderator" }
|
||||
activitypub_federation = { version = "0.5.0-beta.5", default-features = false, features = [
|
||||
"actix-web",
|
||||
] }
|
||||
|
@ -163,7 +163,7 @@ lemmy_utils = { workspace = true }
|
|||
lemmy_db_schema = { workspace = true }
|
||||
lemmy_api_common = { workspace = true }
|
||||
lemmy_routes = { workspace = true }
|
||||
lemmy_federate = { version = "0.19.0-rc.7", path = "crates/federate" }
|
||||
lemmy_federate = { version = "0.19.0-rc.8", path = "crates/federate" }
|
||||
activitypub_federation = { workspace = true }
|
||||
diesel = { workspace = true }
|
||||
diesel-async = { workspace = true }
|
||||
|
|
Loading…
Reference in a new issue