diff --git a/Cargo.toml b/Cargo.toml index c31e9848b..2454fb01a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,8 @@ license = "Apache-2.0" readme = "README.md" repository = "https://forgejo.ellis.link/continuwuation/continuwuity" version = "0.5.2" +# Do not allow publishing, we handle that ourselves +publish = false [workspace.metadata.crane] name = "conduwuit" diff --git a/src/admin/Cargo.toml b/src/admin/Cargo.toml index ad541ecf6..71cf640aa 100644 --- a/src/admin/Cargo.toml +++ b/src/admin/Cargo.toml @@ -6,6 +6,7 @@ license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +publish.workspace = true [lib] path = "mod.rs" diff --git a/src/api/Cargo.toml b/src/api/Cargo.toml index e1d73597f..7b5a6fe37 100644 --- a/src/api/Cargo.toml +++ b/src/api/Cargo.toml @@ -6,6 +6,7 @@ license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +publish.workspace = true [lib] path = "mod.rs" diff --git a/src/build_metadata/Cargo.toml b/src/build_metadata/Cargo.toml index 1e0bd50f4..c99b610f9 100644 --- a/src/build_metadata/Cargo.toml +++ b/src/build_metadata/Cargo.toml @@ -6,6 +6,7 @@ license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +publish.workspace = true build = "build.rs" diff --git a/src/core/Cargo.toml b/src/core/Cargo.toml index 8139f2d3e..1de875bde 100644 --- a/src/core/Cargo.toml +++ b/src/core/Cargo.toml @@ -6,6 +6,7 @@ license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +publish.workspace = true [lib] path = "mod.rs" diff --git a/src/database/Cargo.toml b/src/database/Cargo.toml index 4dd471549..d738c9a56 100644 --- a/src/database/Cargo.toml +++ b/src/database/Cargo.toml @@ -6,6 +6,7 @@ license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +publish.workspace = true [lib] path = "mod.rs" diff --git a/src/macros/Cargo.toml b/src/macros/Cargo.toml index e691944fa..c9bb0b65a 100644 --- a/src/macros/Cargo.toml +++ b/src/macros/Cargo.toml @@ -6,6 +6,7 @@ license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +publish.workspace = true [lib] name = "conduwuit_macros" diff --git a/src/main/Cargo.toml b/src/main/Cargo.toml index 0a9664623..3b8bfe566 100644 --- a/src/main/Cargo.toml +++ b/src/main/Cargo.toml @@ -9,6 +9,7 @@ license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +publish.workspace = true metadata.crane.workspace = true [lib] diff --git a/src/router/Cargo.toml b/src/router/Cargo.toml index 6d3cfde79..34249dd30 100644 --- a/src/router/Cargo.toml +++ b/src/router/Cargo.toml @@ -6,6 +6,7 @@ license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +publish.workspace = true [lib] path = "mod.rs" diff --git a/src/service/Cargo.toml b/src/service/Cargo.toml index 16e37b4ed..9f9ece496 100644 --- a/src/service/Cargo.toml +++ b/src/service/Cargo.toml @@ -6,6 +6,7 @@ license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +publish.workspace = true [lib] path = "mod.rs" diff --git a/src/web/Cargo.toml b/src/web/Cargo.toml index c5c6a06a4..a1146ac61 100644 --- a/src/web/Cargo.toml +++ b/src/web/Cargo.toml @@ -6,6 +6,7 @@ license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +publish.workspace = true [lib] path = "mod.rs" diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index b43bfdb1e..0eeb3fbd8 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -8,6 +8,7 @@ license.workspace = true readme.workspace = true repository.workspace = true version.workspace = true +publish.workspace = true [dependencies] conduwuit-admin.workspace = true