smol/Cargo.toml

68 lines
1.8 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-04-16 14:09:22 +00:00
async-task = "3.0.0"
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-04-21 15:51:07 +00:00
piper = { git = "https://github.com/stjepang/piper.git" }
2020-04-19 09:29:52 +00:00
scoped-tls-hkt = "0.1.2"
2020-02-04 10:08:56 +00:00
slab = "0.4.2"
2020-04-19 09:29:52 +00:00
socket2 = { version = "0.3.12", features = ["pair", "unix"] }
2020-02-05 18:55:59 +00:00
2020-04-18 13:29:24 +00:00
# Optional feature for seamless integration with crates depending on tokio.
# It creates a global tokio runtime and sets up its context inside smol.
#
# To use in your crate, enable the feature as follows:
# ```
# [dependencies]
# smol = { version = "1", features = ["tokio"] }
# ```
2020-04-19 09:29:52 +00:00
[dependencies.tokio]
version = "0.2.18"
default-features = false
features = ["rt-threaded"]
optional = true
2020-04-18 13:29:24 +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-04-09 17:05:42 +00:00
[target.'cfg(windows)'.dev-dependencies]
uds_windows = "0.1.4"
[target.'cfg(target_os = "linux")'.dev-dependencies]
inotify = { version = "0.8.2", default-features = false }
timerfd = "1.1.1"
2020-02-05 18:55:59 +00:00
[dev-dependencies]
2020-04-09 17:05:42 +00:00
anyhow = "1.0.28"
2020-04-19 09:29:52 +00:00
async-h1 = "1.1.2"
2020-03-29 15:59:28 +00:00
async-native-tls = "0.3.3"
2020-04-18 13:29:24 +00:00
async-std = "1.5.0"
2020-03-29 15:59:28 +00:00
async-tungstenite = { version = "0.4.2", features = ["async-native-tls"] }
2020-03-26 22:36:03 +00:00
base64 = "0.12.0"
2020-04-06 20:19:54 +00:00
ctrlc = "3.1.4"
2020-03-26 13:57:06 +00:00
http = "0.2.1"
2020-04-18 13:29:24 +00:00
http-types = "1.2.0"
hyper = { version = "0.13.5", default-features = false, features = ["stream"] }
2020-04-05 11:49:46 +00:00
native-tls = "0.2.4"
2020-04-18 13:29:24 +00:00
num_cpus = "1.13.0"
2020-04-15 09:01:03 +00:00
reqwest = "0.10.4"
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-18 13:29:24 +00:00
smol = { path = ".", features = ["tokio"] }
2020-04-19 09:29:52 +00:00
surf = { version = "2.0.0-alpha.1", default-features = false, features = ["h1-client"] }
tempfile = "3.1.0"
tokio = { version = "0.2.18", default-features = false }
2020-03-29 15:59:28 +00:00
tungstenite = "0.10.1"
2020-03-26 13:57:06 +00:00
url = "2.1.1"