diff --git a/Cargo.toml b/Cargo.toml index 27d41f0..2d559ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,9 +3,11 @@ members = ["wfe-core", "wfe-sqlite", "wfe-postgres", "wfe-opensearch", "wfe-valk resolver = "2" [workspace.package] -version = "0.1.0" +version = "1.0.0" edition = "2024" license = "MIT" +repository = "https://src.sunbeam.pt/studio/wfe" +homepage = "https://src.sunbeam.pt/studio/wfe" [workspace.dependencies] # Core diff --git a/wfe-core/Cargo.toml b/wfe-core/Cargo.toml index 4e8c42c..b7d654f 100644 --- a/wfe-core/Cargo.toml +++ b/wfe-core/Cargo.toml @@ -3,6 +3,8 @@ name = "wfe-core" version.workspace = true edition.workspace = true license.workspace = true +repository.workspace = true +homepage.workspace = true description = "Core traits, models, builder, and executor for the WFE workflow engine" [features] diff --git a/wfe-opensearch/Cargo.toml b/wfe-opensearch/Cargo.toml index 61ef731..43c1b75 100644 --- a/wfe-opensearch/Cargo.toml +++ b/wfe-opensearch/Cargo.toml @@ -3,6 +3,8 @@ name = "wfe-opensearch" version.workspace = true edition.workspace = true license.workspace = true +repository.workspace = true +homepage.workspace = true description = "OpenSearch index provider for WFE" [dependencies] diff --git a/wfe-postgres/Cargo.toml b/wfe-postgres/Cargo.toml index 08645b6..d32c01e 100644 --- a/wfe-postgres/Cargo.toml +++ b/wfe-postgres/Cargo.toml @@ -3,6 +3,8 @@ name = "wfe-postgres" version.workspace = true edition.workspace = true license.workspace = true +repository.workspace = true +homepage.workspace = true description = "PostgreSQL persistence provider for WFE" [dependencies] diff --git a/wfe-sqlite/Cargo.toml b/wfe-sqlite/Cargo.toml index cc638cf..dd30254 100644 --- a/wfe-sqlite/Cargo.toml +++ b/wfe-sqlite/Cargo.toml @@ -3,6 +3,8 @@ name = "wfe-sqlite" version.workspace = true edition.workspace = true license.workspace = true +repository.workspace = true +homepage.workspace = true description = "SQLite persistence provider for WFE" [dependencies] diff --git a/wfe-valkey/Cargo.toml b/wfe-valkey/Cargo.toml index 4c17990..df89183 100644 --- a/wfe-valkey/Cargo.toml +++ b/wfe-valkey/Cargo.toml @@ -3,6 +3,8 @@ name = "wfe-valkey" version.workspace = true edition.workspace = true license.workspace = true +repository.workspace = true +homepage.workspace = true description = "Valkey/Redis provider for distributed locking, queues, and lifecycle events in WFE" [dependencies] diff --git a/wfe/Cargo.toml b/wfe/Cargo.toml index 55bbdd7..def793b 100644 --- a/wfe/Cargo.toml +++ b/wfe/Cargo.toml @@ -3,6 +3,8 @@ name = "wfe" version.workspace = true edition.workspace = true license.workspace = true +repository.workspace = true +homepage.workspace = true description = "WFE workflow engine - umbrella crate" [features]