Skip to content

Commit 0668a38

Browse files
authored
Remove feature full for api_utils (#5767)
* Remove feature `full` for api_utils * move api crates to subfolder
1 parent db44742 commit 0668a38

File tree

182 files changed

+88
-133
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+88
-133
lines changed

Cargo.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,10 @@ default = []
4242

4343
[workspace]
4444
members = [
45-
"crates/api",
46-
"crates/api_crud",
47-
"crates/api_common",
45+
"crates/api/api",
46+
"crates/api/api_crud",
47+
"crates/api/api_common",
48+
"crates/api/api_utils",
4849
"crates/apub",
4950
"crates/apub_objects",
5051
"crates/utils",
@@ -107,14 +108,14 @@ expect_used = "deny"
107108
as_conversions = "deny"
108109

109110
[workspace.dependencies]
110-
lemmy_api = { version = "=1.0.0-alpha.5", path = "./crates/api" }
111-
lemmy_api_crud = { version = "=1.0.0-alpha.5", path = "./crates/api_crud" }
111+
lemmy_api = { version = "=1.0.0-alpha.5", path = "./crates/api/api" }
112+
lemmy_api_crud = { version = "=1.0.0-alpha.5", path = "./crates/api/api_crud" }
112113
lemmy_apub = { version = "=1.0.0-alpha.5", path = "./crates/apub" }
113114
lemmy_apub_objects = { version = "=1.0.0-alpha.5", path = "./crates/apub_objects" }
114115
lemmy_utils = { version = "=1.0.0-alpha.5", path = "./crates/utils", default-features = false }
115116
lemmy_db_schema = { version = "=1.0.0-alpha.5", path = "./crates/db_schema" }
116117
lemmy_db_schema_file = { version = "=1.0.0-alpha.5", path = "./crates/db_schema_file" }
117-
lemmy_api_utils = { version = "=1.0.0-alpha.5", path = "./crates/api_utils" }
118+
lemmy_api_utils = { version = "=1.0.0-alpha.5", path = "./crates/api/api_utils" }
118119
lemmy_routes = { version = "=1.0.0-alpha.5", path = "./crates/routes" }
119120
lemmy_federate = { version = "=1.0.0-alpha.5", path = "./crates/federate" }
120121
lemmy_email = { version = "=1.0.0-alpha.5", path = "./crates/email" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ lemmy_db_views_registration_applications = { workspace = true, features = [
4242
] }
4343
lemmy_utils = { workspace = true }
4444
lemmy_db_schema = { workspace = true, features = ["full"] }
45-
lemmy_api_utils = { workspace = true, features = ["full"] }
45+
lemmy_api_utils = { workspace = true }
4646
lemmy_db_schema_file = { workspace = true }
4747
lemmy_email = { workspace = true }
4848
activitypub_federation = { workspace = true }
File renamed without changes.

0 commit comments

Comments
 (0)