mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-08 09:24:17 +00:00
Version 0.19.0-rc.15
This commit is contained in:
parent
6626d35b98
commit
0b2df3980f
24
Cargo.lock
generated
24
Cargo.lock
generated
|
@ -2523,7 +2523,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_api"
|
||||
version = "0.19.0-rc.14"
|
||||
version = "0.19.0-rc.15"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"actix-web",
|
||||
|
@ -2551,7 +2551,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_api_common"
|
||||
version = "0.19.0-rc.14"
|
||||
version = "0.19.0-rc.15"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"actix-web",
|
||||
|
@ -2585,7 +2585,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_api_crud"
|
||||
version = "0.19.0-rc.14"
|
||||
version = "0.19.0-rc.15"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"actix-web",
|
||||
|
@ -2607,7 +2607,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_apub"
|
||||
version = "0.19.0-rc.14"
|
||||
version = "0.19.0-rc.15"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"actix-web",
|
||||
|
@ -2646,7 +2646,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_db_schema"
|
||||
version = "0.19.0-rc.14"
|
||||
version = "0.19.0-rc.15"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"async-trait",
|
||||
|
@ -2682,7 +2682,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_db_views"
|
||||
version = "0.19.0-rc.14"
|
||||
version = "0.19.0-rc.15"
|
||||
dependencies = [
|
||||
"actix-web",
|
||||
"diesel",
|
||||
|
@ -2700,7 +2700,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_db_views_actor"
|
||||
version = "0.19.0-rc.14"
|
||||
version = "0.19.0-rc.15"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"diesel",
|
||||
|
@ -2717,7 +2717,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_db_views_moderator"
|
||||
version = "0.19.0-rc.14"
|
||||
version = "0.19.0-rc.15"
|
||||
dependencies = [
|
||||
"diesel",
|
||||
"diesel-async",
|
||||
|
@ -2729,7 +2729,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_federate"
|
||||
version = "0.19.0-rc.14"
|
||||
version = "0.19.0-rc.15"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"anyhow",
|
||||
|
@ -2752,7 +2752,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_routes"
|
||||
version = "0.19.0-rc.14"
|
||||
version = "0.19.0-rc.15"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"actix-web",
|
||||
|
@ -2776,7 +2776,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_server"
|
||||
version = "0.19.0-rc.14"
|
||||
version = "0.19.0-rc.15"
|
||||
dependencies = [
|
||||
"activitypub_federation",
|
||||
"actix-cors",
|
||||
|
@ -2818,7 +2818,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lemmy_utils"
|
||||
version = "0.19.0-rc.14"
|
||||
version = "0.19.0-rc.15"
|
||||
dependencies = [
|
||||
"actix-web",
|
||||
"anyhow",
|
||||
|
|
24
Cargo.toml
24
Cargo.toml
|
@ -1,5 +1,5 @@
|
|||
[workspace.package]
|
||||
version = "0.19.0-rc.14"
|
||||
version = "0.19.0-rc.15"
|
||||
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.14", path = "./crates/api" }
|
||||
lemmy_api_crud = { version = "=0.19.0-rc.14", path = "./crates/api_crud" }
|
||||
lemmy_apub = { version = "=0.19.0-rc.14", path = "./crates/apub" }
|
||||
lemmy_utils = { version = "=0.19.0-rc.14", path = "./crates/utils" }
|
||||
lemmy_db_schema = { version = "=0.19.0-rc.14", path = "./crates/db_schema" }
|
||||
lemmy_api_common = { version = "=0.19.0-rc.14", path = "./crates/api_common" }
|
||||
lemmy_routes = { version = "=0.19.0-rc.14", path = "./crates/routes" }
|
||||
lemmy_db_views = { version = "=0.19.0-rc.14", path = "./crates/db_views" }
|
||||
lemmy_db_views_actor = { version = "=0.19.0-rc.14", path = "./crates/db_views_actor" }
|
||||
lemmy_db_views_moderator = { version = "=0.19.0-rc.14", path = "./crates/db_views_moderator" }
|
||||
lemmy_api = { version = "=0.19.0-rc.15", path = "./crates/api" }
|
||||
lemmy_api_crud = { version = "=0.19.0-rc.15", path = "./crates/api_crud" }
|
||||
lemmy_apub = { version = "=0.19.0-rc.15", path = "./crates/apub" }
|
||||
lemmy_utils = { version = "=0.19.0-rc.15", path = "./crates/utils" }
|
||||
lemmy_db_schema = { version = "=0.19.0-rc.15", path = "./crates/db_schema" }
|
||||
lemmy_api_common = { version = "=0.19.0-rc.15", path = "./crates/api_common" }
|
||||
lemmy_routes = { version = "=0.19.0-rc.15", path = "./crates/routes" }
|
||||
lemmy_db_views = { version = "=0.19.0-rc.15", path = "./crates/db_views" }
|
||||
lemmy_db_views_actor = { version = "=0.19.0-rc.15", path = "./crates/db_views_actor" }
|
||||
lemmy_db_views_moderator = { version = "=0.19.0-rc.15", path = "./crates/db_views_moderator" }
|
||||
activitypub_federation = { version = "0.5.0-beta.6", default-features = false, features = [
|
||||
"actix-web",
|
||||
] }
|
||||
|
@ -164,7 +164,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.14", path = "crates/federate" }
|
||||
lemmy_federate = { version = "0.19.0-rc.15", path = "crates/federate" }
|
||||
activitypub_federation = { workspace = true }
|
||||
diesel = { workspace = true }
|
||||
diesel-async = { workspace = true }
|
||||
|
|
Loading…
Reference in a new issue