Browse Source

Disable iceoryx support on Windows

It causes lots of linker errors on Windows. The `iceoryx-rs` crate does not seem to support Windows at the moment.
tags/v0.0.0-test.4
Philipp Oppermann 3 years ago
parent
commit
6caef3b149
Failed to extract signature
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      apis/rust/node/Cargo.toml

+ 3
- 1
apis/rust/node/Cargo.toml View File

@@ -19,8 +19,10 @@ tracing = "0.1.33"
uuid = "0.8.2"
zenoh = { git = "https://github.com/eclipse-zenoh/zenoh.git", optional = true }
zenoh-config = { git = "https://github.com/eclipse-zenoh/zenoh.git", optional = true }
iceoryx-rs = { git = "https://github.com/eclipse-iceoryx/iceoryx-rs.git", optional = true }
flume = "0.10.14"

[target.'cfg(unix)'.dependencies]
iceoryx-rs = { git = "https://github.com/eclipse-iceoryx/iceoryx-rs.git", optional = true }

[dev-dependencies]
tokio = { version = "1.17.0", features = ["rt"] }

Loading…
Cancel
Save