smol/Cargo.toml

58 lines
1.6 KiB
TOML
Raw Normal View History

2020-02-04 10:08:56 +00:00
[package]
name = "smol"
2022-01-08 16:05:11 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
2020-11-28 20:45:58 +00:00
version = "1.2.5"
2020-02-04 10:08:56 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.47"
2020-04-26 17:51:03 +00:00
description = "A small and fast async runtime"
license = "Apache-2.0 OR MIT"
2020-12-23 20:31:12 +00:00
repository = "https://github.com/smol-rs/smol"
homepage = "https://github.com/smol-rs/smol"
2020-04-26 17:51:03 +00:00
documentation = "https://docs.rs/smol"
keywords = ["async", "await", "future", "io", "networking"]
categories = ["asynchronous", "concurrency", "network-programming"]
2022-01-08 16:04:47 +00:00
exclude = ["/.*"]
2020-02-04 10:08:56 +00:00
[dependencies]
2020-09-07 14:51:39 +00:00
async-channel = "1.4.2"
async-executor = "1.5.0"
2020-09-14 16:57:06 +00:00
async-fs = "1.3.0"
async-io = "1.12.0"
async-lock = "2.6.0"
2020-09-21 10:50:41 +00:00
async-net = "1.4.3"
async-process = "1.6.0"
blocking = "1.3.0"
2020-10-09 12:16:52 +00:00
futures-lite = "1.11.0"
2020-04-18 13:29:24 +00:00
2020-02-05 18:55:59 +00:00
[dev-dependencies]
2022-01-08 16:07:00 +00:00
anyhow = "1"
async-dup = "1"
async-h1 = "2"
async-native-tls = "0.4"
2022-07-07 17:16:10 +00:00
async-tungstenite = { version = "0.17", features = ["async-native-tls"] }
2022-01-08 16:07:00 +00:00
ctrlc = "3"
doc-comment = "0.3"
futures = "0.3"
http = "0.2"
http-types = "2"
hyper = { version = "0.14", default-features = false, features = ["client", "http1", "server", "stream"] }
native-tls = "0.2"
2022-07-07 17:16:10 +00:00
scraper = "0.13"
2022-01-08 16:07:00 +00:00
signal-hook = "0.3"
surf = { version = "2", default-features = false, features = ["h1-client"] }
tempfile = "3"
tokio = { version = "1", default-features = false, features = ["rt-multi-thread"] }
2022-07-07 17:16:10 +00:00
tungstenite = "0.17"
2022-01-08 16:07:00 +00:00
url = "2"
2020-07-15 09:40:03 +00:00
[target.'cfg(target_os = "linux")'.dev-dependencies]
2022-01-08 16:07:00 +00:00
inotify = { version = "0.10", default-features = false }
2022-07-07 17:16:10 +00:00
nix = "0.24"
2022-01-08 16:07:00 +00:00
timerfd = "1"
2020-07-15 11:40:46 +00:00
[target.'cfg(windows)'.dev-dependencies]
2021-06-30 14:28:19 +00:00
uds_windows = "1"