1[package]
2name = "smol"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Create "v2.x.y" git tag
6version = "2.0.2"
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.27", features = ["async-native-tls"] }
36ctrlc = "3"
37doc-comment = "0.3"
38futures = "0.3"
39http = "1.1"
40http-body-util = "0.1.0"
41http-types = "2"
42hyper = { version = "1.0", default-features = false, features = ["client", "http1", "server"] }
43macro_rules_attribute = "0.2.0"
44native-tls = "0.2"
45scraper = "0.20"
46signal-hook = "0.3"
47smol-hyper = "0.1.0"
48smol-macros = "0.1.0"
49surf = { version = "2", default-features = false, features = ["h1-client"] }
50tempfile = "3"
51tokio = { version = "1", default-features = false, features = ["rt-multi-thread"] }
52url = "2"
53
54[target.'cfg(target_os = "linux")'.dev-dependencies]
55inotify = { version = "0.11", default-features = false }
56rustix = "0.38"
57timerfd = "1"
58
59[target.'cfg(windows)'.dev-dependencies]
60uds_windows = "1"
61