Skip to content

Commit

Permalink
Merge pull request #12 from Hanaasagi/bump
Browse files Browse the repository at this point in the history
bump
  • Loading branch information
Hanaasagi authored Jun 30, 2024
2 parents e5ea418 + 20c511b commit e7c5652
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 15 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ jobs:
name: Run Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.67.0
override: true
components: clippy
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- -D warnings
- uses: actions/checkout@v4

- name: Setup Rust toolchain
run: |
rustup toolchain install stable --profile minimal
rustup component add clippy
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2

- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "machine-uid"
version = "0.5.1"
version = "0.5.2"
authors = ["Hanaasagi <ambiguous404@gmail.com>"]
edition = "2018"
license = "MIT"
Expand All @@ -12,12 +12,12 @@ Get os native machine id without root permission.
[dependencies]

[target.'cfg(windows)'.dependencies]
winreg = "0.51"
winreg = "0.52"

[target.'cfg(target_os = "illumos")'.dependencies]
libc = "0.2.155"

# [target.'cfg(windows)'.build-dependencies]
[build-dependencies]
cc = "1.0"
bindgen = "0.68"
bindgen = "0.69"
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ I have tested in following platform:

### Changelog

#### v0.5.2

- Add illumos support [#11](https://github.com/Hanaasagi/machine-uid/pull/11)
- Upgrade winreg to 0.52 [#12](https://github.com/Hanaasagi/machine-uid/pull/12)
- Upgrade bindgen to 0.69 [#12](https://github.com/Hanaasagi/machine-uid/pull/12)

#### v0.5.1

- Upgrade winreg to 0.50 [#9](https://github.com/Hanaasagi/machine-uid/pull/9)
Expand Down

0 comments on commit e7c5652

Please sign in to comment.