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