smol/Cargo.toml

34 lines
908 B
TOML
Raw Normal View History

2020-02-04 10:08:56 +00:00
[package]
name = "smol"
version = "0.1.0"
2020-02-04 10:08:56 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
description = "WIP"
license = "MIT OR Apache-2.0"
2020-02-04 10:08:56 +00:00
[dependencies]
async-task = "1.3.0"
2020-02-05 10:39:12 +00:00
crossbeam-channel = "0.4.0"
2020-02-09 18:27:14 +00:00
crossbeam-utils = "0.7.0"
2020-02-05 18:55:59 +00:00
futures-core = "0.3.3"
futures-io = "0.3.3"
2020-02-10 10:38:05 +00:00
futures-util = { version = "0.3.3", default-features = false, features = ["std", "io"] }
2020-02-04 10:08:56 +00:00
once_cell = "1.3.1"
2020-02-06 06:54:27 +00:00
parking_lot = "0.10.0"
2020-02-07 16:10:20 +00:00
pin-utils = "0.1.0-alpha.4"
2020-02-04 10:08:56 +00:00
slab = "0.4.2"
socket2 = "0.3.11"
2020-02-05 18:55:59 +00:00
2020-02-09 22:35:17 +00:00
[target.'cfg(unix)'.dependencies]
nix = "0.16.1"
[target.'cfg(windows)'.dependencies]
2020-02-10 09:58:12 +00:00
wepoll-binding = { git = "https://gitlab.com/stjepang/wepoll-binding.git" }
2020-02-09 22:35:17 +00:00
2020-02-05 18:55:59 +00:00
[dev-dependencies]
2020-02-08 09:24:12 +00:00
futures = { version = "0.3.3", default-features = false, features = ["std"] }
2020-02-09 14:32:44 +00:00
hyper = { version = "0.13", default-features = false }
2020-02-08 09:24:12 +00:00
num_cpus = "1.12.0"
2020-02-07 16:10:20 +00:00
pin-utils = "0.1.0-alpha.4"
2020-02-09 14:32:44 +00:00
tokio = { version = "0.2", default-features = false }