-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 853 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 853 Bytes
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
[package]
name = "axpoll"
version = "0.1.2"
edition = "2024"
description = "A library for polling I/O events and waking up tasks."
authors = ["Mivik <mivikq@gmail.com>", "朝倉水希 <asakuramizu111@gmail.com>"]
license = "GPL-3.0-or-later OR Apache-2.0 OR MulanPSL-2.0"
repository = "https://github.com/Starry-OS/axpoll"
documentation = "https://docs.rs/axpoll"
[features]
alloc = [] # Deprecated
default = ["alloc"]
[dependencies]
bitflags = { version = "2.10", default-features = false }
linux-raw-sys = { version = "0.12", default-features = false, features = [
"no_std",
"general",
] }
spin = { version = "0.10", default-features = false, features = [
"lazy",
"spin_mutex",
] }
[dev-dependencies]
tokio = { version = "1.37", features = [
"rt-multi-thread",
"macros",
"time",
"sync",
] }
futures = "0.3"