Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2022-01-04 | 1.2 kB | |
remotefs 0.2.0 source code.tar.gz | 2022-01-04 | 22.1 kB | |
remotefs 0.2.0 source code.zip | 2022-01-04 | 40.6 kB | |
Totals: 3 Items | 63.8 kB | 0 |
0.2.0
Released on 04/01/2022
- Moved protocols to extern crates:
- aws-s3
- ftp
- ssh
- Merged
File
,Directory
andEntry
into a unique struct calledFile
. File types (symlink, file, directory) are now differentiated by thefile_type
attribute inMetadata
. find
method is now optional, via thefind
feature (enabled by default)- Implemented
From
trait forMetadata
. create
andappend
will now return aWriteStream
instead of a box, which will contain the inner stream which supportsWrite
and may supportSeek
(according to the protocol).read
will now return aReadStream
instead of a box, which will contain the inner stream which supportsRead
and may supportSeek
(according to the protocol).- Metadata times (
created
,accessed
andmodified
) are nowOption<SystemTime>
in order to provide the user to handle unset times, in case it is not supported by the remote server. append_file
,create_file
andopen_file
will now return the number of bytes transferred between the client and the server