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