Skip to content

Commit 5b8874b

Browse files
committed
chore(dmq): rename 'mithril-dmq-node' crate to 'mithril-dmq'
1 parent 0fd9ca9 commit 5b8874b

File tree

27 files changed

+21
-18
lines changed

27 files changed

+21
-18
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ jobs:
805805
# the same name (we only want to document those anyway)
806806
cargo doc --no-deps --lib -p mithril-stm -p mithril-common \
807807
-p mithril-cardano-node-chain -p mithril-cardano-node-internal-database \
808-
-p mithril-dmq-node \
808+
-p mithril-dmq \
809809
-p mithril-build-script -p mithril-cli-helper -p mithril-doc -p mithril-doc-derive \
810810
-p mithril-era -p mithril-metric -p mithril-persistence -p mithril-resource-pool \
811811
-p mithril-ticker -p mithril-signed-entity-lock -p mithril-signed-entity-preloader \

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ members = [
1313
"internal/cardano-node/mithril-cardano-node-internal-database",
1414
"internal/mithril-build-script",
1515
"internal/mithril-cli-helper",
16-
"internal/mithril-dmq-node",
16+
"internal/mithril-dmq",
1717
"internal/mithril-doc",
1818
"internal/mithril-doc-derive",
1919
"internal/mithril-era",

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
COMPONENTS = mithril-aggregator mithril-client mithril-client-cli mithril-client-wasm \
22
mithril-common mithril-relay mithril-signer mithril-stm \
33
internal/mithril-build-script internal/mithril-cli-helper internal/mithril-doc \
4-
internal/mithril-dmq-node \
4+
internal/mithril-dmq \
55
internal/mithril-doc-derive internal/mithril-era internal/mithril-metric internal/mithril-persistence \
66
internal/mithril-resource-pool internal/mithril-ticker \
77
internal/cardano-node/mithril-cardano-node-chain internal/cardano-node/mithril-cardano-node-internal-database \

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ This repository consists of the following parts:
8080
- [**Mithril signer**](./mithril-signer): the node of the **Mithril network** responsible for producing individual signatures that are collected and aggregated by the **Mithril aggregator**.
8181

8282
- [**Internal**](./internal): the shared tools and API used by **Mithril** crates.
83+
8384
- [**Mithril build script**](./internal/mithril-build-script): a toolbox for Mithril crates that uses a build script phase.
8485

8586
- [**Mithril cardano-node-chain**](./internal/cardano-node/mithril-cardano-node-chain): mechanisms to read and interact with the **Cardano chain** through a Cardano node, used by **Mithril network** nodes.
@@ -88,7 +89,7 @@ This repository consists of the following parts:
8889

8990
- [**Mithril cli helper**](./internal/mithril-cli-helper): **CLI** tools for **Mithril** binaries.
9091

91-
- [**Mithril DMQ node**](./internal/mithril-dmq-node): mechanisms to publish and consume messages of a **Decentralized Message Queue network** through a DMQ node, used by Mithril network nodes.
92+
- [**Mithril DMQ node**](./internal/mithril-dmq): mechanisms to publish and consume messages of a **Decentralized Message Queue network** through a DMQ node, used by Mithril network nodes.
9293

9394
- [**Mithril doc**](./internal/mithril-doc): an API that generates Markdown documentation for crate command line arguments.
9495

@@ -109,11 +110,13 @@ This repository consists of the following parts:
109110
- [**Mithril signed entity prealoader**](./internal/signed-entity/mithril-signed-entity-preloader): a **preload** mechanism for the Cardano transaction signed entity, used by **Mithril network** nodes.
110111

111112
- [**tests**](./internal/tests): shared testing tools used by **Mithril** crates.
113+
112114
- [**Mithril api spec**](./internal/tests/mithril-api-spec): toolset to verify conformity of http routes against an Open Api specification, used by **Mithril network** nodes.
113115

114116
- [**Mithril test http server**](internal/tests/mithril-test-http-server): provides a test http server, used by **Mithril network** nodes.
115117

116118
- [**Mithril test lab**](./mithril-test-lab): the suite of tools that allow us to test and stress the **Mithril** protocol implementations.
119+
117120
- [**Mithril devnet**](./mithril-test-lab/mithril-devnet): the private **Mithril/Cardano network** used to scaffold a **Mithril network** on top of a **Cardano network**.
118121

119122
- [**Mithril end to end**](./mithril-test-lab/mithril-end-to-end): the tool used to run test scenarios against a **Mithril devnet**.

internal/mithril-dmq-node/Cargo.toml renamed to internal/mithril-dmq/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "mithril-dmq-node"
2+
name = "mithril-dmq"
33
description = "Mechanisms to publish and consume messages of a 'Decentralized Message Queue network' through a DMQ node"
44
version = "0.1.0"
55
authors.workspace = true
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)