28 lines
1.0 KiB
Markdown
28 lines
1.0 KiB
Markdown
|
|
# p2p-merkle-client
|
|
|
|
A peer-to-peer client to download merkle trees.
|
|
|
|
## prerequisites
|
|
|
|
- [Rust](https://www.rust-lang.org/) installed (including Cargo).
|
|
|
|
## compilation instructions
|
|
|
|
To compile the project, navigate to the project directory in your terminal and run the following command:
|
|
|
|
```bash
|
|
cargo build
|
|
```
|
|
|
|
The project is divided in two modules :
|
|
client-gui and client-network
|
|
|
|
## running the project
|
|
|
|
After successful compilation, you can run the project using:
|
|
|
|
```bash
|
|
cargo run
|
|
```
|