From d3bf6d50296c58724a9d73938ab09633822bbd76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Em=C4=ABls?= Date: Thu, 10 Dec 2020 09:09:37 +0000 Subject: [PATCH] Allow building as a library crate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Emīls --- src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/lib.rs diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 00000000..56cb1d9a --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,5 @@ +extern crate alloc; + +pub mod configuration; +pub mod platform; +pub mod wireguard;