Skip to content

Commit

Permalink
Drop unix_socket dev dependency
Browse files Browse the repository at this point in the history
Use `UnixStream` from standard library instead.
  • Loading branch information
naglis committed Dec 7, 2023
1 parent 5765e02 commit ea93772
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ serde_repr = { version = "0.1", optional = true }

[dev-dependencies]
tempdir = "0.3.5"
unix_socket = "0.5.0"

[features]
serde = ["dep:serde", "dep:serde_repr"]
3 changes: 1 addition & 2 deletions benches/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
extern crate mpd;
extern crate test;
extern crate time;
extern crate unix_socket;

use std::os::unix::net::UnixStream;
use test::{black_box, Bencher};
use unix_socket::UnixStream;

#[bench]
fn status(b: &mut Bencher) {
Expand Down

0 comments on commit ea93772

Please sign in to comment.