-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
32 lines (28 loc) · 1.05 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
[package]
name = "a10"
description = "A10 is an io_uring library."
version = "0.2.2"
authors = ["Thomas de Zeeuw <thomasdezeeuw@gmail.com>"]
license = "MIT"
documentation = "https://docs.rs/a10"
repository = "https://github.com/Thomasdezeeuw/a10"
readme = "README.md"
keywords = ["io_uring", "io", "async", "non-blocking"]
categories = ["asynchronous"]
include = ["/Cargo.toml", "/src/**/*.rs", "/tests/**/*.rs", "/README.md", "/LICENSE"]
edition = "2021"
[features]
default = []
# Enables nightly only features.
# * Enables usage of the `AsyncIterator` trait (`async_iterator`).
# * Returns more accurate `io::ErrorKind`s for certain errors (`io_error_more`).
nightly = []
[dependencies]
libc = { version = "0.2.132", default-features = false }
log = { version = "0.4.21", default-features = false, features = ["kv_std"] }
[dev-dependencies]
std-logger = { version = "0.5.3", default-features = false }
[[test]]
name = "signals"
# Tests need control of the main thread.
harness = false