-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (31 loc) · 1.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "ioslice"
version = "0.6.0"
authors = ["4lDO2 <[email protected]>"]
edition = "2018"
description = "no_std I/O slices that are still optionally ABI compatible with std and lbc"
documentation = "https://docs.rs/ioslice"
readme = "README.md"
repository = "https://github.com/4lDO2/ioslice-rs"
license = "MIT"
keywords = ["os", "iovec", "vectored-io"]
categories = ["api-bindings", "no-std", "os::unix-apis", "os::windows-apis", "os"]
exclude = ["target"]
[features]
default = ["std", "io_box"]
std = ["libc", "winapi", "alloc"]
alloc = []
io_box = ["alloc"]
nightly = []
[dependencies]
stable_deref_trait = { version = "1", optional = true }
[target.'cfg(unix)'.dependencies]
libc = { version = "0.2", optional = true }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", optional = true, features = ["ntdef", "ws2def"] }
[dev-dependencies]
libc = "0.2"
[badges]
travis-ci = { repository = "4lDO2/ioslice-rs", branch = "master" }
is-it-maintained-issue-resolution = { repository = "4lDO2/ioslice-rs" }
is-it-maintained-open-issues = { repository = "4lDO2/ioslice-rs" }