-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 1.06 KB
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
38
[package]
name = "mill-io"
version = "1.0.1"
edition = "2021"
authors = ["Citadel-tech", "Mohamed Emad <hulxxv@gmail.com>"]
description = "A lightweight event loop library for Rust that provides efficient non-blocking I/O management without relying on heavyweight async runtimes."
documentation = "https://docs.rs/mill-io"
homepage = "https://github.com/citadel-tech/Event-Loop"
repository = "https://github.com/citadel-tech/Event-Loop"
readme = "README.md"
license = "Apache-2.0"
keywords = ["io", "event-loop", "mio", "networking", "reactor"]
categories = ["network-programming", "asynchronous", "concurrency"]
include = [
"src/**/*",
"examples/**/*",
"docs/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
]
rust-version = "1.70"
[dependencies]
lockfree = "0.5.1"
mio = { version = "1.1.0", features = ["os-poll", "net"] }
[dev-dependencies]
serde ={ version = "1.0.219", features = ["derive"] }
serde_json = "1.0.141"
[features]
default = []
unstable-mpmc = []
unstable = ["unstable-mpmc"]
[target.'cfg(target_os = "linux")'.dev-dependencies]
inotify = "0.10"