-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 728 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 728 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
[package]
name = "trale"
version = "0.3.0"
edition = "2021"
authors = ["Matthew Leach <dev@mattleach.net>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/hexagonal-sun/trale"
description = """
Trale is a minimalistic Rust async executor using io_uring for efficient, correct
task execution.
"""
categories = ["asynchronous", "network-programming"]
keywords = ["io", "async", "non-blocking", "futures"]
[dependencies]
io-uring = "0.7.4"
libc = "0.2.167"
log = "0.4.22"
ringbuffer = "0.15.0"
slab = "0.4.9"
tokio-stream = { version = "0.1.17", default-features = false }
[dev-dependencies]
anyhow = "1.0.81"
assert_fs = "1.1.2"
clap = { version = "4.5.28", features = ["derive"] }
env_logger = "0.11.6"