Skip to content

Commit

Permalink
attempt to pin down *nix vs windows for transport
Browse files Browse the repository at this point in the history
  • Loading branch information
rgbkrk committed Jan 15, 2024
1 parent 8c4157c commit 6b33d3e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@ log = "0.4.20"
env_logger = "0.10.1"
kernel-sidecar = "0.1.0"

[target.'cfg(windows)'.dependencies.zeromq]
version = "=0.3.4"
default-features = false
features = ["tcp-transport", "tokio-runtime"]


[target.'cfg(unix)'.dependencies.zeromq]
version = "=0.3.4"
default-features = false
features = ["ipc-transport", "tcp-transport", "tokio-runtime"]

[features]
# this feature is used for production builds or when `devPath` points to the filesystem
# DO NOT REMOVE!!
Expand Down

0 comments on commit 6b33d3e

Please sign in to comment.