diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..181f748 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,19 @@ +[package] +authors = ["ihciah <[email protected]>"] +edition = "2021" +name = "mini-rust-runtime" +version = "0.1.0" +license = "MIT" + +[dependencies] +polling = "2" +socket2 = "0.4" +libc = "0.2" +nix = "0.23" +scoped-tls = "1" +futures = "0.3" +waker-fn = "1" +pin-utils = "0.1" +rustc-hash = "1" + +tokio = {version = "1", features = ["io-util"]} |
