File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ use core::fmt::Write;
19
19
20
20
use crate :: { data_model:: cluster_basic_information:: BasicInfoConfig , error:: Error } ;
21
21
22
- #[ cfg( all( feature = "std" , feature = "astro-dnssd " ) ) ]
22
+ #[ cfg( all( feature = "std" , target_os = "macos " ) ) ]
23
23
pub mod astro;
24
24
pub mod builtin;
25
25
pub mod proto;
@@ -55,16 +55,16 @@ where
55
55
}
56
56
}
57
57
58
- #[ cfg( all( feature = "std" , feature = "astro-dnssd " ) ) ]
58
+ #[ cfg( all( feature = "std" , target_os = "macos " ) ) ]
59
59
pub type DefaultMdns < ' a > = astro:: Mdns < ' a > ;
60
60
61
- #[ cfg( all( feature = "std" , feature = "astro-dnssd " ) ) ]
61
+ #[ cfg( all( feature = "std" , target_os = "macos " ) ) ]
62
62
pub type DefaultMdnsRunner < ' a > = astro:: MdnsRunner < ' a > ;
63
63
64
- #[ cfg( not( all( feature = "std" , feature = "astro-dnssd " ) ) ) ]
64
+ #[ cfg( not( all( feature = "std" , target_os = "macos " ) ) ) ]
65
65
pub type DefaultMdns < ' a > = builtin:: Mdns < ' a > ;
66
66
67
- #[ cfg( not( all( feature = "std" , feature = "astro-dnssd " ) ) ) ]
67
+ #[ cfg( not( all( feature = "std" , target_os = "macos " ) ) ) ]
68
68
pub type DefaultMdnsRunner < ' a > = builtin:: MdnsRunner < ' a > ;
69
69
70
70
pub struct DummyMdns ;
You can’t perform that action at this time.
0 commit comments