Skip to content

Commit baf8968

Browse files
author
Stjepan Glavina
committed
Initial commit
0 parents  commit baf8968

File tree

7 files changed

+3148
-0
lines changed

7 files changed

+3148
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
Cargo.lock

Cargo.toml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[package]
2+
name = "async-io"
3+
version = "0.1.0"
4+
authors = ["Stjepan Glavina <[email protected]>"]
5+
edition = "2018"
6+
7+
[dependencies]
8+
blocking = "0.4.6"
9+
concurrent-queue = "1.1.1"
10+
futures-io = { version = "0.3.5", default-features = false, features = ["std"] }
11+
futures-util = { version = "0.3.5", default-features = false, features = ["std", "io"] }
12+
libc = "0.2.71"
13+
once_cell = "1.4.0"
14+
parking = "1.0.3"
15+
slab = "0.4.2"
16+
socket2 = { version = "0.3.12", features = ["pair", "unix"] }
17+
18+
[target.'cfg(windows)'.dependencies]
19+
wepoll-sys-stjepang = "1.0.6"
20+
winapi = { version = "0.3.8", features = ["ioapiset"] }
21+
22+
[dev-dependencies]
23+
async-channel = "1.1.1"
24+
async-dup = "1.1.0"
25+
futures = { version = "0.3.5", default-features = false, features = ["std"] }
26+
tempfile = "3.1.0"

0 commit comments

Comments
 (0)