smol/Cargo.toml

59 lines
1.6 KiB
TOML

[package]
name = "smol"
version = "1.2.5"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
description = "A small and fast async runtime"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/smol"
homepage = "https://github.com/smol-rs/smol"
documentation = "https://docs.rs/smol"
keywords = ["async", "await", "future", "io", "networking"]
categories = ["asynchronous", "concurrency", "network-programming"]
readme = "README.md"
[dependencies]
async-channel = "1.4.2"
async-executor = "1.1.0"
async-fs = "1.3.0"
async-io = "1.1.2"
async-lock = "2.3.0"
async-net = "1.4.3"
async-process = "1.0.0"
blocking = "1.0.0"
futures-lite = "1.11.0"
once_cell = "1.4.1"
[dev-dependencies]
anyhow = "1.0.37"
async-dup = "1.2.2"
async-h1 = "2.3.0"
async-native-tls = "0.3.3"
async-std = "1.9.0"
async-tungstenite = { version = "0.12.0", features = ["async-native-tls"] }
base64 = "0.13.0"
ctrlc = "3.1.6"
doc-comment = "0.3.3"
futures = "0.3.8"
http = "0.2.2"
http-types = "2.9.0"
hyper = { version = "0.14.2", default-features = false, features = ["client", "http1", "server", "stream"] }
native-tls = "0.2.7"
num_cpus = "1.13.0"
scraper = "0.12.0"
signal-hook = "0.3.2"
surf = { version = "2.1.0", default-features = false, features = ["h1-client"] }
tempfile = "3.2.0"
tide = "0.15.0"
tokio = { version = "1.0.1", default-features = false, features = ["rt-multi-thread"] }
tungstenite = "0.12.0"
url = "2.2.0"
[target.'cfg(target_os = "linux")'.dev-dependencies]
inotify = { version = "0.9.2", default-features = false }
nix = "0.19.1"
timerfd = "1.2.0"
[target.'cfg(windows)'.dev-dependencies]
uds_windows = "0.1.5"