From 991a20b47afcf00b61cddd01ef6cd07cb4fb216b Mon Sep 17 00:00:00 2001 From: chertov Date: Sat, 15 May 2021 10:54:06 +0300 Subject: [PATCH 1/2] use only "error" and "ifaces" feature for util package --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 37ee056..b2b34bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ default = [ "reuse_port" ] reuse_port = [] [dependencies] -util = { package = "webrtc-util", version = "0.1.18" } +util = { package = "webrtc-util", version = "0.1.18", default-features = false, features = ["error", "ifaces"] } lazy_static = "1.3.0" tokio = { version = "^1.0", features = ["full"] } log = "0.4" @@ -41,4 +41,4 @@ bench = false [[example]] name = "mdns_server_query" path = "examples/mdns_server_query.rs" -bench = false \ No newline at end of file +bench = false From 2eb2ac23d2d0e64fbae8a481935799aa8674c050 Mon Sep 17 00:00:00 2001 From: chertov Date: Sat, 15 May 2021 11:09:21 +0300 Subject: [PATCH 2/2] upgrade util version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b2b34bd..92b24b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ default = [ "reuse_port" ] reuse_port = [] [dependencies] -util = { package = "webrtc-util", version = "0.1.18", default-features = false, features = ["error", "ifaces"] } +util = { package = "webrtc-util", version = "0.1.19", default-features = false, features = ["error", "ifaces"] } lazy_static = "1.3.0" tokio = { version = "^1.0", features = ["full"] } log = "0.4"