From a3d338196fb50ae4c4fff9b2a2eafd20c036e466 Mon Sep 17 00:00:00 2001 From: Stanislav Tkach Date: Tue, 9 Dec 2025 11:00:30 +0100 Subject: [PATCH 1/3] Add a new (empty) catalyst-contest crate --- rust/Cargo.toml | 1 + rust/catalyst-contest/Cargo.toml | 15 +++++++++++++++ rust/catalyst-contest/src/lib.rs | 5 +++++ 3 files changed, 21 insertions(+) create mode 100644 rust/catalyst-contest/Cargo.toml create mode 100644 rust/catalyst-contest/src/lib.rs diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 1a058ca9de..af0c409f95 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -9,6 +9,7 @@ members = [ "cbork-abnf-parser", "cbork-cddl-parser", "cbork-utils", + "catalyst-contest", "catalyst-voting", "catalyst-types", "immutable-ledger", diff --git a/rust/catalyst-contest/Cargo.toml b/rust/catalyst-contest/Cargo.toml new file mode 100644 index 0000000000..2f17d8eec9 --- /dev/null +++ b/rust/catalyst-contest/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "catalyst-contest" +description = "Catalyst voting (contest)" +keywords = ["cardano", "catalyst", "voting", "contest"] +version = "0.0.1" +edition.workspace = true +authors.workspace = true +homepage.workspace = true +repository.workspace = true +license.workspace = true + +[lints] +workspace = true + +[dependencies] diff --git a/rust/catalyst-contest/src/lib.rs b/rust/catalyst-contest/src/lib.rs new file mode 100644 index 0000000000..096d5740eb --- /dev/null +++ b/rust/catalyst-contest/src/lib.rs @@ -0,0 +1,5 @@ +//! A Catalyst voting (contest) functionality. +//! +//! See the [documentation] for more information. +//! +//! [documentation]: https://docs.dev.projectcatalyst.io/libs/main/architecture/08_concepts/signed_doc/docs/contest_ballot/ From b19d22dcd86519b6ecdd9969238d6ef5a7eaea3c Mon Sep 17 00:00:00 2001 From: Stanislav Tkach Date: Tue, 9 Dec 2025 11:07:36 +0100 Subject: [PATCH 2/3] Update earthfile --- rust/Earthfile | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/Earthfile b/rust/Earthfile index 46dc6d7509..e4781e6b04 100644 --- a/rust/Earthfile +++ b/rust/Earthfile @@ -17,6 +17,7 @@ COPY_SRC: cbork cbork-abnf-parser cbork-cddl-parser cbork-utils \ hermes-ipfs \ signed_doc \ + catalyst-contestv \ catalyst-signed-doc-macro \ catalyst-signed-doc-spec \ rbac-registration \ From d4b9df0cef6debaa721b95ead0cedf28484fb52f Mon Sep 17 00:00:00 2001 From: Stanislav Tkach Date: Tue, 9 Dec 2025 11:10:38 +0100 Subject: [PATCH 3/3] Fix typo --- rust/Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/Earthfile b/rust/Earthfile index e4781e6b04..964289bf1e 100644 --- a/rust/Earthfile +++ b/rust/Earthfile @@ -17,7 +17,7 @@ COPY_SRC: cbork cbork-abnf-parser cbork-cddl-parser cbork-utils \ hermes-ipfs \ signed_doc \ - catalyst-contestv \ + catalyst-contest \ catalyst-signed-doc-macro \ catalyst-signed-doc-spec \ rbac-registration \