-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
35 lines (31 loc) · 1.17 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
[package]
name = "a10"
description = "A10 is an io_uring library."
version = "0.3.0"
publish = false # In development.
authors = ["Thomas de Zeeuw <[email protected]>"]
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"
rust-version = "1.85"
[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 }
getrandom = { version = "0.2.15", default-features = false }
[[test]]
name = "signals"
# Tests need control of the main thread.
harness = false