#platform #user #comparison #lovepack #struct #checking

platform-lp

a library for getting the user platform, and checking against other platforms

3 releases

Uses old Rust 2015

0.2.2 Dec 22, 2018
0.2.1 Dec 21, 2018
0.2.0 Dec 14, 2018

#70 in #checking

Download history 12/week @ 2024-02-19 50/week @ 2024-02-26 7/week @ 2024-03-04

69 downloads per month
Used in 3 crates

MIT license

16KB
260 lines

Platform-LP-RS

A platform enum written in rust to be used with lovepack tools.

Contains functions to determine the current running platform as well as parsing and comparisons.

Usage

Include the library in your cargo.toml.

[dependencies]
platform-lp = "0.2"

Then use it in your library / application.

let user_plat = platform_lp::Platform::get_user_platform();

// you can pass an entire executable name to check what platform it is, 
// assuming it goes by some kind of standard naming convention.
// like perhaps one of mine: lpsettings-0.1.7-win-x86_64.zip
let package_platform = platform_lp::Platform::new(executable_release_name);

// then you can check if its the same platform
if user_plat == package_platform {
    // then extract it, run it, etc ...
}

// or you can check compatability (i.e. for 32 bit on 64 bit systems)
if package_platform.is_compatible(user_plat) {
    // then do something fun...
}

Changes

0.2.1

  • Platform now implements std::fmt::Display

Dependencies

~110–355KB