Skip to content

Commit

Permalink
chore(deps): bump ringbuf from 0.3.3 to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josecelano committed May 7, 2024
1 parent 25ecdce commit be51d2f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 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
Expand Up @@ -57,7 +57,7 @@ r2d2_mysql = "24"
r2d2_sqlite = { version = "0", features = ["bundled"] }
rand = "0"
reqwest = { version = "0", features = ["json"] }
ringbuf = "0.3.3"
ringbuf = "0"
serde = { version = "1", features = ["derive"] }
serde_bencode = "0"
serde_bytes = "0"
Expand Down
3 changes: 2 additions & 1 deletion src/servers/udp/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ use std::sync::Arc;
use aquatic_udp_protocol::Response;
use derive_more::Constructor;
use log::{debug, error, info, trace};
use ringbuf::{Rb, StaticRb};
use ringbuf::traits::{Consumer, Observer, RingBuffer};
use ringbuf::StaticRb;
use tokio::net::UdpSocket;
use tokio::sync::oneshot;
use tokio::task::{AbortHandle, JoinHandle};
Expand Down

0 comments on commit be51d2f

Please sign in to comment.