1[package]
2name = "smol"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Create "v2.x.y" git tag
6version = "2.0.0"
7authors = ["Stjepan Glavina <stjepang@gmail.com>"]
8edition = "2018"
9rust-version = "1.63"
10description = "A small and fast async runtime"
11license = "Apache-2.0 OR MIT"
12repository = "https://github.com/smol-rs/smol"
13keywords = ["async", "await", "future", "io", "networking"]
14categories = ["asynchronous", "concurrency", "network-programming"]
15exclude = ["/.*"]
16
17[dependencies]
18async-channel = "2.0.0"
19async-executor = "1.5.0"
20async-fs = "2.0.0"
21async-io = "2.1.0"
22async-lock = "3.0.0"
23async-net = "2.0.0"
24blocking = "1.3.0"
25futures-lite = "2.0.0"
26
27[target.'cfg(not(target_os = "espidf"))'.dependencies]
28async-process = "2.0.0"
29
30[dev-dependencies]
31anyhow = "1"
32async-dup = "1"
33async-h1 = "2"
34async-native-tls = "0.5"
35async-tungstenite = { version = "0.24", features = ["async-native-tls"] }
36ctrlc = "3"
37doc-comment = "0.3"
38futures = "0.3"
39http = "0.2"
40http-types = "2"
41hyper = { version = "0.14", default-features = false, features = ["client", "http1", "server", "stream"] }
42native-tls = "0.2"
43scraper = "0.18"
44signal-hook = "0.3"
45surf = { version = "2", default-features = false, features = ["h1-client"] }
46tempfile = "3"
47tokio = { version = "1", default-features = false, features = ["rt-multi-thread"] }
48url = "2"
49
50[target.'cfg(target_os = "linux")'.dev-dependencies]
51inotify = { version = "0.10", default-features = false }
52rustix = "0.38"
53timerfd = "1"
54
55[target.'cfg(windows)'.dev-dependencies]
56uds_windows = "1"
57