浏览代码

Check that at least one medium is enabled if socket is enabled.

Dario Nieuwenhuis 3 年之前
父节点
当前提交
6705d9f546
共有 1 个文件被更改,包括 9 次插入0 次删除
  1. 9 0
      src/lib.rs

+ 9 - 0
src/lib.rs

@@ -105,6 +105,15 @@ compile_error!("You must enable at least one of the following features: proto-ip
 ))]
 compile_error!("If you enable the socket feature, you must enable at least one of the following features: socket-raw, socket-udp, socket-tcp, socket-icmp");
 
+#[cfg(all(
+    feature = "socket",
+    not(any(
+        feature = "medium-ethernet",
+        feature = "medium-ip",
+    ))
+))]
+compile_error!("If you enable the socket feature, you must enable at least one of the following features: medium-ip, medium-ethernet");
+
 #[cfg(all(feature = "defmt", feature = "log"))]
 compile_error!("You must enable at most one of the following features: defmt, log");