Skip to content

Commit

Permalink
rename activity pub crate
Browse files Browse the repository at this point in the history
  • Loading branch information
thebino committed Jul 10, 2023
1 parent 185d178 commit 6c868ee
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 19 deletions.
6 changes: 4 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
}
},
"rust-analyzer.linkedProjects": [
"./crates/core_activity_pub/Cargo.toml",
"./crates/activity_pub/Cargo.toml",
"./crates/core_common/Cargo.toml",
"./crates/core_photos/Cargo.toml"
"./crates/core_photos/Cargo.toml",
"./crates/oauth_authentication/Cargo.toml",
"./crates/oauth_authorization_server/Cargo.toml"
],
"rust-analyzer.showUnlinkedFileNotification": false,
"debug.allowBreakpointsEverywhere": true,
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ members = [
"crates/oauth_authentication",
"crates/core_common",
"crates/core_photos",
"crates/core_activity_pub",
"crates/activity_pub",
"crates/plugin_interface"
]

Expand All @@ -38,7 +38,7 @@ oauth_authorization_server = { path = "./crates/oauth_authorization_server" }
oauth_authentication = { path = "./crates/oauth_authentication" }
core_common = { path = "./crates/core_common" }
core_photos = { path = "./crates/core_photos" }
core_activity_pub = { path = "./crates/core_activity_pub" }
activity_pub = { path = "./crates/activity_pub" }

activitypub_federation = "~0.4.0"
axum = { version = "0.6.2", features = ["ws", "headers"] }
Expand All @@ -64,7 +64,7 @@ tracing-appender = "0.2.2"

# core_api = { version = "=0.1.0", path = "./crates/core_api" }
# core_api_crud = { version = "=0.1.0", path = "./crates/api_crud" }
# core_apub = { version = "=0.1.0", path = "./crates/core_activity_pub" }
# core_apub = { version = "=0.1.0", path = "./crates/activity_pub" }



Expand All @@ -81,7 +81,7 @@ oauth_authentication = { workspace = true }
# core_api = { workspace = true }
core_common = { workspace = true }
core_photos = { workspace = true }
core_activity_pub = { workspace = true }
activity_pub = { workspace = true }
# core_api_crud = { workspace = true }


Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "core_activity_pub"
name = "activity_pub"
description = "ActivityPub protocol implementation to join the Fediverse."
version.workspace = true
authors.workspace = true
description.workspace = true
homepage.workspace = true
documentation.workspace = true
repository.workspace = true
Expand All @@ -11,7 +11,7 @@ license.workspace = true
edition.workspace = true

[lib]
name = "core_activity_pub"
name = "activity_pub"
path = "src/lib.rs"
doctest = false

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# core_activity_pub
# activity_pub

This crate provides the [ActivityPub](https://www.w3.org/TR/activitypub/) implementation for Photos.network.

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 6c868ee

Please sign in to comment.