Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #90

Merged
merged 2 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## 0.2.4

- Fix a progress message.
- Fix a progress message. PR [#85](https://github.com/datablockset/blockset/pull/85).

## 0.2.3

Expand Down
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,29 @@ Articles:
- [BLOCKSET v0.2](https://medium.com/@sergeyshandar/blockset-v0-2-b43c03bac182),
- [Content Dependent Tree](https://medium.com/@sergeyshandar/content-dependent-hash-tree-9e0f60859415).

Install the latest stable version from [crates.io](https://crates.io/crates/blockset):
## Usage

## Prerequisites

- [Rust](https://www.rust-lang.org/tools/install).
- For Windows:
- [C and C++ support for Visual Studio](https://learn.microsoft.com/en-us/cpp/build/vscpp-step-0-installation?view=msvc-170).

## Installation

To install the latest stable version from [crates.io](https://crates.io/crates/blockset), run:

```console
cargo install blockset
```

Install the current version from the `main` branch:
To install the current version from the `main` branch, run:

```console
cargo install --git https://github.com/datablockset/blockset
```

Uninstall the `blockset`:
To unininstall the `blockset`, run:

```console
cargo uninstall blockset
Expand Down