Skip to content

Commit

Permalink
doc: Update supported features
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentdephily committed May 1, 2024
1 parent c0eab48 commit 1539647
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@
- Client connect/disconnect
- Packets sent/received
- Server termination
* Events can be filtered via `Conf::event_*()` builders
- Types received can be filtered via `Conf::event_*()` builders
- The server will buffer a finite but configurable number of events
- Events can be received async during the server run, or sync at server finish
* Waiting for the server to finish is now done via `Mqttest::finish()` method
- This returns some basic runtime statistics
- This returns some basic runtime statistics, and any leftover events
* Added a max_runtime config to stop the server after a delay

# 0.2.0 (2020-04-06)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Initial development has been sponsored by [Munic](https://munic.io/).
- [x] Use as a rust library
- [x] Decode file dumps to rust structs
- [x] Configure and start server
- [ ] Runtime server control and client interaction using rust channels
- [x] Runtime server control and client interaction using rust channels
- [ ] Return dumps and stats after each run
- [ ] Use as a library from other languages
- Verbose log file and network dump
Expand Down Expand Up @@ -110,7 +110,7 @@ fn connect() {
srv.finish().await.unwrap()
});
// Check run results
assert_eq!(1, stats.conn_count
assert_eq!(1, stats.conn_count);
}
```

Expand Down

0 comments on commit 1539647

Please sign in to comment.