Skip to content

Commit 99eae3b

Browse files
feat(rust): Add a new (empty) catalyst-contest crate (#690)
* Add a new (empty) catalyst-contest crate * Update earthfile * Fix typo
1 parent dceedfe commit 99eae3b

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

rust/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ members = [
99
"cbork-abnf-parser",
1010
"cbork-cddl-parser",
1111
"cbork-utils",
12+
"catalyst-contest",
1213
"catalyst-voting",
1314
"catalyst-types",
1415
"immutable-ledger",

rust/Earthfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ COPY_SRC:
1717
cbork cbork-abnf-parser cbork-cddl-parser cbork-utils \
1818
hermes-ipfs \
1919
signed_doc \
20+
catalyst-contest \
2021
catalyst-signed-doc-macro \
2122
catalyst-signed-doc-spec \
2223
rbac-registration \

rust/catalyst-contest/Cargo.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[package]
2+
name = "catalyst-contest"
3+
description = "Catalyst voting (contest)"
4+
keywords = ["cardano", "catalyst", "voting", "contest"]
5+
version = "0.0.1"
6+
edition.workspace = true
7+
authors.workspace = true
8+
homepage.workspace = true
9+
repository.workspace = true
10+
license.workspace = true
11+
12+
[lints]
13+
workspace = true
14+
15+
[dependencies]

rust/catalyst-contest/src/lib.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
//! A Catalyst voting (contest) functionality.
2+
//!
3+
//! See the [documentation] for more information.
4+
//!
5+
//! [documentation]: https://docs.dev.projectcatalyst.io/libs/main/architecture/08_concepts/signed_doc/docs/contest_ballot/

0 commit comments

Comments
 (0)