summaryrefslogtreecommitdiffhomepage
path: root/mullvad-update/src/lib.rs
blob: bfce66e12015f2cea44d24e21c2d809dc26819a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Support functions for securely installing or updating Mullvad VPN

#[cfg(feature = "client")]
mod client;

#[cfg(feature = "client")]
pub use client::*;

mod defaults;

pub mod version;

/// Parser and serializer for version metadata
pub mod format;

#[cfg(feature = "client")]
pub mod hash;