Skip to content

Commit

Permalink
Update documentation.
Browse files Browse the repository at this point in the history
Upgrade to version 0.4.0.
  • Loading branch information
MisterBourbaki committed Dec 4, 2024
1 parent 86cc798 commit 04bf81b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "minimal-federated-computing"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
repository = "https://github.com/MisterBourbaki/minimal-federated-computing"
readme = "README.md"
Expand Down
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,20 @@ Then run
(.venv) cargo run --bin mfc-server
```

to launch the server, and in another termianl window
to launch the server, and in another terminal window

```bash
(.venv) cargo run --bin mfc-client
(.venv) cargo run --bin mfc-client -- --dim-vec 10
```

To change the address on which the server listen, use the `--addr` flag:

```bash
(.venv) cargo run --bin mfc-server -- --addr "127.0.0.1:10000"
```

and

```bash
(.venv) cargo run --bin mfc-client -- --dim-vec 10 -- --addr "127.0.0.1:10000"
```

0 comments on commit 04bf81b

Please sign in to comment.