Skip to content

Commit

Permalink
Merge pull request #21 from chainbound/chore/docs
Browse files Browse the repository at this point in the history
chore(docs): added tokio_stream::StreamExt
  • Loading branch information
mempirate authored Jan 26, 2024
2 parents f95869a + b8a18cf commit 44f0e77
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/usage/streams_sub.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ for tx := range ch {

```rust
use fiber::Client;
use tokio_util::StreamExt;

#[tokio::main]
async fn main() {
Expand Down Expand Up @@ -207,6 +208,7 @@ Constructing filters with the Rust package is not very ergonomic yet. We're work

```rust
use fiber::Client;
use tokio_util::StreamExt;

#[tokio::main]
async fn main() {
Expand Down Expand Up @@ -313,6 +315,7 @@ func main() {

```rust
use fiber::Client;
use tokio_util::StreamExt;

#[tokio::main]
async fn main() {
Expand Down Expand Up @@ -408,6 +411,7 @@ func main() {

```rust
use fiber::Client;
use tokio_util::StreamExt;

#[tokio::main]
async fn main() {
Expand Down Expand Up @@ -503,6 +507,7 @@ func main() {

```rust
use fiber::Client;
use tokio_util::StreamExt;

#[tokio::main]
async fn main() {
Expand Down

0 comments on commit 44f0e77

Please sign in to comment.