forked from Starry-OS/axpoll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 781 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 781 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
[package]
name = "axpoll"
version = "0.1.0"
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 = []
default = ["alloc"]
[dependencies]
bitflags = { version = "2.10", default-features = false }
linux-raw-sys = { version = "0.11", default-features = false, features = [
"no_std",
"general",
] }
spin = { version = "0.10", default-features = false, features = ["spin_mutex"] }
[dev-dependencies]
futures = "0.3"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }