summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 99ec98a8394cdb40e6f65f4e7d40c1b6291925d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
authors = ["ihciah <[email protected]>"]
edition = "2021"
name = "mini-rust-runtime"
version = "0.1.0"
license = "MIT"

[dependencies]
polling = "2"
socket2 = "0.5.3"
libc = "0.2"
nix = "0.26.2"
scoped-tls = "1"
futures = "0.3"
waker-fn = "1"
pin-utils = "0.1"
rustc-hash = "1"

tokio = {version = "1", features = ["io-util"]}