Skip to content

Commit 218362d

Browse files
update names
1 parent 9d3f13b commit 218362d

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ members = [
77
resolver = "2"
88

99
[workspace.dependencies]
10+
alto-client = { version = "0.0.2", path = "client" }
1011
alto-types = { version = "0.0.2", path = "types" }
1112
commonware-consensus = { version = "0.0.40" }
1213
commonware-cryptography = { version = "0.0.40" }

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
## Components
88

99
* [chain](./chain/README.md): A minimal blockchain built with the [Commonware Library](https://github.com/commonwarexyz/monorepo).
10+
* [client](./client/README.md): Client for interacting with `alto`.
1011
* [types](./types/README.md): Common types used throughout `alto`.
1112

1213
## Licensing

client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.0.2"
44
publish = true
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
7-
description = "Utilities for interacting with alto."
7+
description = "Client for interacting with alto."
88
readme = "README.md"
99
homepage = "https://alto.commonware.xyz"
1010
repository = "https://github.com/commonwarexyz/alto/tree/main/client"

client/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Crates.io](https://img.shields.io/crates/v/alto-client.svg)](https://crates.io/crates/alto-client)
44
[![Docs.rs](https://docs.rs/alto-client/badge.svg)](https://docs.rs/alto-client)
55

6-
Utilities for interacting with `alto`.
6+
Client for interacting with `alto`.
77

88
## Status
99

client/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//! Client for interacting with `alto`.
2+
13
use commonware_cryptography::{bls12381, sha256::Digest};
24
use commonware_utils::hex;
35
use thiserror::Error;

0 commit comments

Comments
 (0)