bb-flasher-sd 2.0.1

A library to flash OS images to SD Card
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(target_os = "linux")]
mod linux;
#[cfg(target_os = "macos")]
mod macos;
#[cfg(windows)]
mod windows;

#[cfg(target_os = "linux")]
pub(crate) use linux::{open, format};
#[cfg(target_os = "macos")]
pub(crate) use macos::{open, format};
#[cfg(windows)]
pub(crate) use windows::{open, format};