smol/Cargo.toml

51 lines
1.2 KiB
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]
2020-03-23 13:07:07 +00:00
async-task = "1.3.1"
crossbeam-deque = "0.7.3"
crossbeam-queue = "0.2.1"
crossbeam-utils = "0.7.2"
2020-03-31 16:04:16 +00:00
futures = { version = "0.3.4", default-features = false, features = ["std"] }
2020-03-23 13:07:07 +00:00
libc = "0.2.68"
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-29 21:47:45 +00:00
piper = { path = "piper" }
2020-03-23 13:07:07 +00:00
scopeguard = "1.1.0"
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]
2020-03-23 13:07:07 +00:00
nix = "0.17.0"
2020-02-09 22:35:17 +00:00
[target.'cfg(windows)'.dependencies]
2020-02-10 19:10:43 +00:00
wepoll-binding = "1.1.0"
2020-02-09 22:35:17 +00:00
2020-03-31 16:04:16 +00:00
[target.'cfg(windows)'.dev-dependencies]
uds_windows = "0.1.4"
[target.'cfg(target_os = "linux")'.dev-dependencies]
timerfd = "1.1.1"
2020-02-05 18:55:59 +00:00
[dev-dependencies]
2020-03-26 13:57:06 +00:00
anyhow = "1.0.27"
2020-03-20 13:53:26 +00:00
async-h1 = "1.0.1"
2020-03-29 15:59:28 +00:00
async-native-tls = "0.3.3"
async-tungstenite = { version = "0.4.2", features = ["async-native-tls"] }
2020-03-26 22:36:03 +00:00
base64 = "0.12.0"
2020-03-31 16:04:16 +00:00
futures = "0.3.4"
2020-03-26 13:57:06 +00:00
http = "0.2.1"
2020-03-20 13:53:26 +00:00
http-types = "1.0.1"
2020-03-26 13:57:06 +00:00
hyper = { version = "0.13.4", default-features = false, features = ["stream"] }
2020-02-08 09:24:12 +00:00
num_cpus = "1.12.0"
2020-03-23 13:07:07 +00:00
signal-hook = "0.1.13"
tokio = { version = "0.2.13", default-features = false, features = ["rt-threaded", "time", "macros"] }
2020-03-29 15:59:28 +00:00
tungstenite = "0.10.1"
2020-03-26 13:57:06 +00:00
url = "2.1.1"