diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2019-02-27 17:12:28 +0000 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2019-04-03 16:46:17 +0000 |
| commit | a6014898dae79925d3f4139bdb6b561a26f541e6 (patch) | |
| tree | 42465970164e98f758ad4d83c23ab788eb46f1d0 | |
| parent | 5d5392d39cc00696cd42c547587bbd7d767dd1c9 (diff) | |
| download | mullvadvpn-a6014898dae79925d3f4139bdb6b561a26f541e6.tar.xz mullvadvpn-a6014898dae79925d3f4139bdb6b561a26f541e6.zip | |
Don't import `tun` dependency on Android
| -rw-r--r-- | talpid-core/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/talpid-core/Cargo.toml b/talpid-core/Cargo.toml index 5d577d1c46..b27c509fcb 100644 --- a/talpid-core/Cargo.toml +++ b/talpid-core/Cargo.toml @@ -32,7 +32,6 @@ uuid = { version = "0.7", features = ["v4"] } hex = "0.3" ipnetwork = "0.14" lazy_static = "1.0" -tun = { git = "https://github.com/pinkisemils/rust-tun", branch = "add-raw-fd-traits" } nix = "0.13" @@ -48,12 +47,14 @@ nftnl = { git = "https://github.com/mullvad/nftnl-rs", rev = "29651f4370fdf22cc2 mnl = { git = "https://github.com/mullvad/mnl-rs", rev = "f0d19501b9b85be9a1ffaec8317a378bcbdf4fa6", features = ["mnl-1-0-4"] } which = "2.0" err-derive = "0.1.5" +tun = { git = "https://github.com/pinkisemils/rust-tun", branch = "add-raw-fd-traits" } [target.'cfg(target_os = "macos")'.dependencies] # TODO: Specify 0.2.1 once the crate gets published pfctl = { git = "https://github.com/mullvad/pfctl-rs", rev = "9f31b5ddcab941862470075eab83bb398195f3d6" } system-configuration = "0.2" +tun = { git = "https://github.com/pinkisemils/rust-tun", branch = "add-raw-fd-traits" } [target.'cfg(windows)'.dependencies] |
