build: update dependencies#14
Merged
Merged
Conversation
Contributor
|
Hello, this PR can not build on my computer. OS: Windows 10 LTSC > cargo build -p sftp
Compiling sftp v0.1.0 (G:\Project\rust\wincs\examples\sftp)
error[E0603]: module `filter` is private
--> examples\sftp\src/main.rs:18:5
|
18 | filter::{info, ticket, SyncFilter},
| ^^^^^^ private module
|
help: consider importing this module instead:
wincs::info
--> examples\sftp\src/main.rs:18:14
|
18 | filter::{info, ticket, SyncFilter},
| ^^^^
note: the module `filter` is defined here
--> G:\Project\rust\wincs\src\lib.rs:10:1
|
10 | mod filter;
| ^^^^^^^^^^
error[E0603]: module `filter` is private
--> examples\sftp\src/main.rs:18:5
|
18 | filter::{info, ticket, SyncFilter},
| ^^^^^^ private module
|
help: consider importing this module instead:
wincs::ticket
--> examples\sftp\src/main.rs:18:20
|
18 | filter::{info, ticket, SyncFilter},
| ^^^^^^
note: the module `filter` is defined here
--> G:\Project\rust\wincs\src\lib.rs:10:1
|
10 | mod filter;
| ^^^^^^^^^^
error[E0603]: module `filter` is private
--> examples\sftp\src/main.rs:18:5
|
18 | filter::{info, ticket, SyncFilter},
| ^^^^^^ private module
|
help: consider importing this trait instead:
wincs::SyncFilter
--> examples\sftp\src/main.rs:18:28
|
18 | filter::{info, ticket, SyncFilter},
| ^^^^^^^^^^
note: the module `filter` is defined here
--> G:\Project\rust\wincs\src\lib.rs:10:1
|
10 | mod filter;
| ^^^^^^^^^^
error[E0603]: module `placeholder_file` is private
--> examples\sftp\src/main.rs:19:5
|
19 | placeholder_file::{Metadata, PlaceholderFile},
| ^^^^^^^^^^^^^^^^ private module
|
note: the module `placeholder_file` is defined here
--> G:\Project\rust\wincs\src\lib.rs:12:1
|
12 | mod placeholder_file;
| ^^^^^^^^^^^^^^^^^^^^
error[E0603]: module `request` is private
--> examples\sftp\src/main.rs:20:5
|
20 | request::Request,
| ^^^^^^^ private module
|
note: the module `request` is defined here
--> G:\Project\rust\wincs\src\lib.rs:13:1
|
13 | mod request;
| ^^^^^^^^^^^
For more information about this error, try `rustc --explain E0603`.
error: could not compile `sftp` (bin "sftp") due to 5 previous errors |
* refactor: update windows dependency and refactor examples - Updated windows crate to latest - Update command module to use latest operation parameter structures - Refactor examples to use latest apis and update callback functions - Fix parsing SyncRootId to components * refactor: `Placeholder::create` and `SyncRootId::to_components` - Removed unwanted generic parameter from `Placeholder::create` - Improve `SyncRootId::to_components` - Add test cases to test `SyncRootId::to_components` Co-authored-by: ok-nick nick.libraries@gmail.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.