Skip to content

Commit

Permalink
optimization mac fp
Browse files Browse the repository at this point in the history
  • Loading branch information
doroved committed Mar 5, 2024
1 parent 6fcac5e commit 26a6f3e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mid"
version = "1.1.3"
version = "1.1.4"
edition = "2021"
authors = ["doroved"]
description = "Creating a unique machine ID hash for MacOS/Linux/Windows"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Add the dependency to Cargo.toml

```toml
[dependencies]
mid = "1.1.3"
mid = "1.1.4"
```

Or install using Cargo CLI
Expand Down
2 changes: 1 addition & 1 deletion README_RU.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ system_profiler SPSecureElementDataType

```toml
[dependencies]
mid = "1.1.3"
mid = "1.1.4"
```

Или установить с помощью Cargo CLI
Expand Down
2 changes: 1 addition & 1 deletion src/macos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pub(crate) fn get_mid_result() -> Result<String, MIDError> {
"sh",
[
"-c",
r#"system_profiler SPHardwareDataType; system_profiler SPSecureElementDataType"#,
r#"system_profiler SPHardwareDataType SPSecureElementDataType"#,
],
)?;

Expand Down

0 comments on commit 26a6f3e

Please sign in to comment.