appx 0.1.0

Managing appx packages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![deny(unreachable_patterns)]  // common bug when missing ERROR_*

#![cfg_attr(not(windows), allow(dead_code))]
#![cfg_attr(not(windows), allow(unused_imports))]
#![cfg_attr(not(windows), allow(unused_macros))]



#[macro_use] mod macros;

mod family;                 pub use family::PackageFamilyName;
mod package;                pub use package::PackageFullName;
mod reg;
pub mod repository;
mod wstring;                pub use wstring::WString;