From 94373082838ad4fdb23a159f6e64fc2e57b38b82 Mon Sep 17 00:00:00 2001 From: "B. Blechschmidt" Date: Mon, 10 Apr 2023 21:37:20 +0200 Subject: [PATCH] Support building for Android --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index bc2826a..76e744a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,9 @@ edition = "2018" name = "tun2proxy" version = "0.1.1" +[lib] +crate-type = ["cdylib", "lib"] + [dependencies] base64 = { version = "0.21" } clap = { version = "4.1", features = ["derive"] }