mirror of
https://github.com/veeso/termscp.git
synced 2025-12-06 17:15:35 -08:00
feat: smb is now an optional feature (#200)
This commit is contained in:
committed by
GitHub
parent
66888c418c
commit
a071f3d420
4
build.rs
4
build.rs
@@ -9,7 +9,7 @@ fn main() {
|
||||
unix: { target_family = "unix" },
|
||||
windows: { target_family = "windows" },
|
||||
// exclusive features
|
||||
smb: { not( macos ) },
|
||||
smb_unix: { all(unix, not(macos)) }
|
||||
smb: { all(feature = "smb", not( macos )) },
|
||||
smb_unix: { all(unix, feature = "smb", not(macos)) }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user