smol/Cargo.toml

48 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"
2020-04-02 14:44:49 +00:00
crossbeam = "0.7.3"
2020-03-31 16:04:16 +00:00
futures = { version = "0.3.4", default-features = false, features = ["std"] }
2020-02-04 10:08:56 +00:00
once_cell = "1.3.1"
2020-02-29 21:47:45 +00:00
piper = { path = "piper" }
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-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-26 13:57:06 +00:00
http = "0.2.1"
2020-04-01 19:40:27 +00:00
http-types = "1.1.0"
2020-03-26 13:57:06 +00:00
hyper = { version = "0.13.4", default-features = false, features = ["stream"] }
2020-04-05 11:49:46 +00:00
native-tls = "0.2.4"
2020-02-08 09:24:12 +00:00
num_cpus = "1.12.0"
2020-04-01 19:40:27 +00:00
scraper = "0.11.0"
2020-03-23 13:07:07 +00:00
signal-hook = "0.1.13"
2020-04-01 19:40:27 +00:00
surf = "1.0.3"
2020-04-05 11:49:46 +00:00
tokio = { version = "0.2.13", default-features = false, features = ["rt-threaded"] }
2020-03-29 15:59:28 +00:00
tungstenite = "0.10.1"
2020-03-26 13:57:06 +00:00
url = "2.1.1"
2020-04-05 11:49:46 +00:00
[target.'cfg(target_os = "linux")'.dev-dependencies]
inotify = { version = "0.8.2", default-features = false }
timerfd = "1.1.1"
[target.'cfg(windows)'.dev-dependencies]
uds_windows = "0.1.4"