Laurențiu Nicola
3fecd0154c
Add an explicit wait for the test to finish ( #445 )
2018-06-22 14:07:02 -07:00
Laurențiu Nicola
0440343a11
tokio-fs: add changelog for 0.1.2 ( #444 )
2018-06-22 14:06:50 -07:00
Laurențiu Nicola
ecfe2f6a05
tokio-fs: add tokio_fs::File::seek ( #434 )
2018-06-21 09:43:35 -07:00
Laurențiu Nicola
5753553ba3
Move metadata to a submodule ( #439 )
2018-06-21 09:41:38 -07:00
Laurențiu Nicola
04a4bfd455
tokio-fs: add tokio_fs::metadata ( #433 )
2018-06-20 13:12:06 -07:00
Jake Goulding
b2f77dcebe
Add a dedicated Future for retrieving the metadata of a file ( #385 )
2018-06-18 16:00:43 -07:00
Carl Lerche
c25ea78ec9
Bump version of a number of sub crates ( #414 )
...
This includes:
* tokio-codec (0.1.0)
* tokio-current-thread (0.1.0)
* tokio-fs (0.1.1)
* tokio-io (0.1.7)
* tokio-reactor (0.1.2)
* tokio-udp (0.1.1)
2018-06-13 10:24:56 -07:00
Mat Sadler
d1f825ca13
Add OpenOptions to tokio-fs ( #390 )
...
Add an `OpenOptions` struct to `tokio-fs` that mirrors the one found in
`std`. Also provide a conversion from a `std` instance to a Tokio instance.
2018-06-12 10:47:24 -07:00
Laurențiu Nicola
4cf7d73b22
tokio-fs: add into_std ( #403 )
2018-06-12 10:40:43 -07:00
David Kellum
9013ed9bd4
Fix description of BlockingError as io::Error ( #384 )
2018-06-06 14:34:55 -07:00
Bryan Burgers
f723d10087
Create tokio-codec ( #360 )
...
Create a new tokio-codec crate with many of the contents of
`tokio_io::codec`.
2018-06-04 20:36:06 -07:00
Marek Kotewicz
14ec268b8a
Fixed broken link in tokio-fs documentation ( #352 )
2018-05-11 08:31:06 -07:00
Thijs Vermeir
7cca6499a9
Fix typo in documentation ( #338 )
2018-05-03 10:28:48 -07:00
Carl Lerche
8235eefbf0
Fix some dependency versions ( #337 )
2018-05-02 13:12:33 -07:00
Carl Lerche
14b31bdba5
Bump version to v0.1.6 ( #336 )
2018-05-02 12:14:44 -07:00
Carl Lerche
f768163982
Filesystem manipulation APIs. ( #323 )
...
This patch adds a new crate: tokio-fs. This crate provides a wrapper
around `std` functionality that can only be performed using blocking
operations. This primarily includes filesystem operations, but it also
includes standard input, output, and error access as these streams
cannot be safely switched to non-blocking mode in a portable way.
These wrappers call the `std` functions from within a `blocking`
annotation which allows the runtime to compensate for the fact that the
thread will potentially remain blocked in a system call.
2018-05-02 11:19:58 -07:00