Skip to content

Commit

Permalink
chore(plugin-driver): scope Signal import to unix platforms only
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Jul 5, 2024
1 parent 21c382a commit 8ef58fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/rust/driver/src/plugin_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ use pact_models::v4::interaction::V4Interaction;
use reqwest::Client;
use semver::Version;
use serde_json::Value;
use sysinfo::{Pid, Signal, System};
use sysinfo::{Pid,System};
#[cfg(not(windows))] use sysinfo::Signal;
#[cfg(not(windows))] use tokio::process::Command;
use tracing::{debug, info, trace, warn};

Expand Down

0 comments on commit 8ef58fe

Please sign in to comment.