From 6541605319068dcfed8801e99b8623ec1b107813 Mon Sep 17 00:00:00 2001 From: Jake McGinty Date: Wed, 12 Jan 2022 16:15:05 -0600 Subject: [PATCH] wireguard-control: add log crate dependency to allow debug output --- Cargo.lock | 1 + wireguard-control/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 6f9c1a9..32f731c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1379,6 +1379,7 @@ dependencies = [ "curve25519-dalek", "hex", "libc", + "log", "netlink-packet-core", "netlink-packet-generic", "netlink-packet-route", diff --git a/wireguard-control/Cargo.toml b/wireguard-control/Cargo.toml index fc62e8d..5720eed 100644 --- a/wireguard-control/Cargo.toml +++ b/wireguard-control/Cargo.toml @@ -13,6 +13,7 @@ version = "1.5.3-beta.1" base64 = "0.13" hex = "0.4" libc = "0.2" +log = "0.4" rand_core = "0.6" curve25519-dalek = "4.0.0-pre.1"