Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only impl std traits if feature is specified #106

Merged
merged 3 commits into from
Sep 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,3 +197,4 @@ notifications:
branches:
only:
- master
- 0.2
28 changes: 14 additions & 14 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,20 +160,20 @@ pub use crate::error::Error;
#[allow(dead_code)]
mod util;

cfg_if! {
// Unlike the other Unix, Fuchsia and iOS don't use the libc to make any calls.
if #[cfg(any(target_os = "android", target_os = "dragonfly", target_os = "emscripten",
target_os = "freebsd", target_os = "haiku", target_os = "illumos",
target_os = "linux", target_os = "macos", target_os = "netbsd",
target_os = "openbsd", target_os = "redox", target_os = "solaris"))] {
#[allow(dead_code)]
mod util_libc;
// Keep std-only trait definitions for backwards compatiblity
mod error_impls;
} else if #[cfg(feature = "std")] {
mod error_impls;
}
}
#[cfg(all(
unix,
not(any(
target_os = "ios",
target_os = "fuchsia",
target_os = "hermit",
target_os = "l4re"
))
))]
#[allow(dead_code)]
mod util_libc;

#[cfg(feature = "std")]
mod error_impls;

// These targets read from a file as a fallback method.
#[cfg(any(
Expand Down