dmisys 0.1.0

This is a specialized library designed to output the hardware configuration required by the system, as well as various status information of the current device.
Documentation
加入本函式庫至自己的專案內
===

[回開發說明文件主頁](README.md)

## 使用Github倉庫源

1. 加入所需的相依
    * 手動: 在專案內的`Cargo.toml`進行設置
    ```toml=
    [dependencies]
    dmisys = { git = "https://github.com/neko0xff/dmisys.git", branch = "main" }
   ```
    * 命令列: `cargo add dmisys --git https://github.com/neko0xff/dmisys.git --branch main`
2. 在程式碼內調用函式庫
     ```rust=
    use dmisys::*;

    fn main(){
        println!("OS: {}",dmisys::os::read_osname());
    }
     ```
3. 開始編譯!: `cargo run`