Skip to content

Commit 9d89027

Browse files
authored
Add missing metadata so crates can be published. (#3778) (#3779)
## Motivation Publishing the faucet crates fails because of missing metadata. ## Proposal Add the metadata to `Cargo.toml`. ## Test Plan `scripts/test_publish.sh packages.txt test-registry` ## Release Plan - Nothing to do / These changes follow the usual release cycle. ## Links - Port of #3778. - [reviewer checklist](https://github.com/linera-io/linera-protocol/blob/main/CONTRIBUTING.md#reviewer-checklist)
1 parent 3580817 commit 9d89027

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

linera-faucet/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[package]
22
name = "linera-faucet"
3+
description = "Common definitions for the Linera faucet."
4+
readme = "README.md"
5+
documentation = "https://docs.rs/linera-faucet/latest/linera_faucet/"
6+
37
version.workspace = true
48
authors.workspace = true
59
repository.workspace = true

linera-faucet/client/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[package]
22
name = "linera-faucet-client"
3+
description = "The client component of the Linera faucet."
4+
readme = "README.md"
5+
documentation = "https://docs.rs/linera-faucet-client/latest/linera_faucet_client/"
6+
37
version.workspace = true
48
authors.workspace = true
59
repository.workspace = true

linera-faucet/server/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[package]
22
name = "linera-faucet-server"
3+
description = "The server component of the Linera faucet."
4+
readme = "README.md"
5+
documentation = "https://docs.rs/linera-faucet-server/latest/linera_faucet_server/"
6+
37
version.workspace = true
48
authors.workspace = true
59
repository.workspace = true

0 commit comments

Comments
 (0)