We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0db4c5c + a8a2ae9 commit ff440dbCopy full SHA for ff440db
Cargo.toml
@@ -27,7 +27,6 @@ unstable = []
27
async-task = "1.0.0"
28
cfg-if = "0.1.9"
29
crossbeam-channel = "0.3.9"
30
-futures-channel-preview = "0.3.0-alpha.18"
31
futures-core-preview = "0.3.0-alpha.18"
32
futures-io-preview = "0.3.0-alpha.18"
33
futures-timer = "0.4.0"
examples/print-file.rs
@@ -7,7 +7,7 @@ use async_std::io;
7
use async_std::prelude::*;
8
use async_std::task;
9
10
-const LEN: usize = 4 * 1024 * 1024; // 4 Mb
+const LEN: usize = 16 * 1024; // 16 Kb
11
12
fn main() -> io::Result<()> {
13
let path = args().nth(1).expect("missing path argument");
0 commit comments