From 1bcc864344cf54fdb691a0e11669a663d3c1d7c9 Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Fri, 4 Jun 2021 21:20:03 -0700 Subject: [PATCH] trim dependencies --- Cargo.lock | 1 - Cargo.toml | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6e842d5..69817e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -823,7 +823,6 @@ dependencies = [ "log", "mylog", "once_cell", - "parking_lot", "pin-project", "pretty-hex", "rtcp", diff --git a/Cargo.toml b/Cargo.toml index bc61eea..4d5adb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,12 +27,12 @@ rtp-rs = "0.5.0" rtsp-types = { git = "https://github.com/sdroege/rtsp-types" } sdp = "0.1.3" smallvec = { version = "1.6.1", features = ["union"] } -structopt = "0.3.21" time = "0.1.43" -tokio = { version = "1.5.0", features = ["full", "parking_lot"] } +tokio = { version = "1.5.0", features = ["macros", "net", "time"] } tokio-util = { version = "0.6.6", features = ["codec"] } url = "2.2.1" [dev-dependencies] mylog = { git = "https://github.com/scottlamb/mylog" } -parking_lot = "0.11.0" +structopt = "0.3.21" +tokio = { version = "1.5.0", features = ["fs", "io-util", "macros", "parking_lot", "rt-multi-thread", "signal"] }