smol/Cargo.toml

61 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 "v2.x.y" git tag
version = "2.0.0"
2020-02-04 10:08:56 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
rust-version = "1.63"
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"
2020-04-26 17:51:03 +00:00
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]
async-channel = "2.0.0"
async-executor = "1.5.0"
async-fs = "2.0.0"
async-io = "2.1.0"
async-lock = "3.0.0"
async-net = "2.0.0"
blocking = "1.3.0"
futures-lite = "2.0.0"
2020-04-18 13:29:24 +00:00
2021-09-22 11:02:58 +00:00
[target.'cfg(not(target_os = "espidf"))'.dependencies]
async-process = "2.0.0"
2021-09-22 11:02:58 +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.5"
async-tungstenite = { version = "0.25", features = ["async-native-tls"] }
2022-01-08 16:07:00 +00:00
ctrlc = "3"
doc-comment = "0.3"
futures = "0.3"
http = "1.1"
http-body-util = "0.1.0"
2022-01-08 16:07:00 +00:00
http-types = "2"
hyper = { version = "1.0", default-features = false, features = ["client", "http1", "server"] }
macro_rules_attribute = "0.2.0"
2022-01-08 16:07:00 +00:00
native-tls = "0.2"
scraper = "0.19"
2022-01-08 16:07:00 +00:00
signal-hook = "0.3"
smol-hyper = "0.1.0"
smol-macros = "0.1.0"
2022-01-08 16:07:00 +00:00
surf = { version = "2", default-features = false, features = ["h1-client"] }
tempfile = "3"
tokio = { version = "1", default-features = false, features = ["rt-multi-thread"] }
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 }
2023-08-29 16:47:25 +00:00
rustix = "0.38"
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"