Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use published machineid-rs #81

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions wimon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ssids = ["wifiscanner"]
data_model = { path = "../data_model" }

# for creating a unique machine ID
machineid-rs = { version = "1.2.4", git = "https://github.com/andrewdavidmackenzie/machineid-rs", branch = "patch-1"}
machineid-rs = "1.2.4"

# for reading config from a file
serde_derive = "~1.0"
Expand All @@ -29,13 +29,13 @@ toml = { version = "0.8.8" }
url = "2.5"

# for making network requests
curl = {version = "~0.4", default-features = false, features = ["rustls"]}
curl = { version = "~0.4", default-features = false, features = ["rustls"] }

# for catching signals
ctrlc = {version = "3.4.1", features = ["termination"] }
ctrlc = { version = "3.4.1", features = ["termination"] }

# for installing as a system service
service-manager = "0.6.0"

# for scanning wifi and getting SSIDs visible
wifiscanner = {version = "0.5.1", optional = true}
wifiscanner = { version = "0.5.1", optional = true }
Loading