浏览代码

Merge pull request #416 from smoltcp-rs/no-socket

Fix build when with no socket features
Dario Nieuwenhuis 4 年之前
父节点
当前提交
15f3bc5cd0
共有 3 个文件被更改,包括 9 次插入4 次删除
  1. 3 0
      .github/workflows/test.yml
  2. 5 4
      Cargo.toml
  3. 1 0
      src/lib.rs

+ 3 - 0
.github/workflows/test.yml

@@ -22,6 +22,9 @@ jobs:
           # Test default features.
           # Test default features.
           - default
           - default
 
 
+          # Test minimal featureset
+          - std proto-ipv4
+
           # Test features chosen to be as orthogonal as possible.
           # Test features chosen to be as orthogonal as possible.
           - std ethernet phy-raw_socket proto-ipv6 socket-udp
           - std ethernet phy-raw_socket proto-ipv6 socket-udp
           - std ethernet phy-tap_interface proto-ipv6 socket-udp
           - std ethernet phy-tap_interface proto-ipv6 socket-udp

+ 5 - 4
Cargo.toml

@@ -39,10 +39,11 @@ ethernet = []
 "proto-igmp" = ["proto-ipv4"]
 "proto-igmp" = ["proto-ipv4"]
 "proto-dhcpv4" = ["proto-ipv4", "socket-raw"]
 "proto-dhcpv4" = ["proto-ipv4", "socket-raw"]
 "proto-ipv6" = []
 "proto-ipv6" = []
-"socket-raw" = []
-"socket-udp" = []
-"socket-tcp" = []
-"socket-icmp" = []
+"socket" = []
+"socket-raw" = ["socket"]
+"socket-udp" = ["socket"]
+"socket-tcp" = ["socket"]
+"socket-icmp" = ["socket"]
 "async" = []
 "async" = []
 default = [
 default = [
   "std", "log", # needed for `cargo test --no-default-features --features default` :/
   "std", "log", # needed for `cargo test --no-default-features --features default` :/

+ 1 - 0
src/lib.rs

@@ -106,6 +106,7 @@ pub mod storage;
 pub mod phy;
 pub mod phy;
 pub mod wire;
 pub mod wire;
 pub mod iface;
 pub mod iface;
+#[cfg(feature = "socket")]
 pub mod socket;
 pub mod socket;
 pub mod time;
 pub mod time;
 #[cfg(feature = "proto-dhcpv4")]
 #[cfg(feature = "proto-dhcpv4")]