diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2019-04-08 16:02:43 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2019-04-08 17:03:43 +0200 |
| commit | 07389db311ca1ac3a14bd8ee6e7e56f2843cceec (patch) | |
| tree | ba6665c457436b15f74bfbc5ffcaf6e2425501d9 | |
| parent | b2b240275e3b2ac0f21d1b26c49699ddd2ef8022 (diff) | |
| download | mullvadvpn-07389db311ca1ac3a14bd8ee6e7e56f2843cceec.tar.xz mullvadvpn-07389db311ca1ac3a14bd8ee6e7e56f2843cceec.zip | |
Update `tun` dependency to new crates.io release
| -rw-r--r-- | Cargo.lock | 8 | ||||
| -rw-r--r-- | talpid-core/Cargo.toml | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock index fd1a0a8403..bd4e137f95 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2014,7 +2014,7 @@ dependencies = [ "talpid-types 0.1.0", "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-core 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)", - "tun 0.4.2 (git+https://github.com/pinkisemils/rust-tun?branch=add-raw-fd-traits)", + "tun 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", "which 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "widestring 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2398,8 +2398,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "tun" -version = "0.4.2" -source = "git+https://github.com/pinkisemils/rust-tun?branch=add-raw-fd-traits#6638b8545a21387eeedf429b64bd24d8447f2832" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "ioctl-sys 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2841,7 +2841,7 @@ dependencies = [ "checksum tokio-uds 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445" "checksum toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f" "checksum try-lock 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ee2aa4715743892880f70885373966c83d73ef1b0838a664ef0c76fffd35e7c2" -"checksum tun 0.4.2 (git+https://github.com/pinkisemils/rust-tun?branch=add-raw-fd-traits)" = "<none>" +"checksum tun 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "43a6b6b51530c4ec101fcfbaf7e4b4af958cbadf419ef9e4fb199f7261c6dbec" "checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169" "checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" "checksum unicase 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "41d17211f887da8e4a70a45b9536f26fc5de166b81e2d5d80de4a17fd22553bd" diff --git a/talpid-core/Cargo.toml b/talpid-core/Cargo.toml index 5c0e57e557..04f8f57bfb 100644 --- a/talpid-core/Cargo.toml +++ b/talpid-core/Cargo.toml @@ -46,14 +46,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" } +tun = "0.4.3" [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" } +tun = "0.4.3" [target.'cfg(windows)'.dependencies] |
