File: Cargo.toml

package info (click to toggle)
rust-async-io 2.3.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 388 kB
  • sloc: makefile: 2
file content (116 lines) | stat: -rw-r--r-- 2,213 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.63"
name = "async-io"
version = "2.3.3"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
exclude = ["/.*"]
description = "Async I/O and timers"
readme = "README.md"
keywords = [
    "mio",
    "epoll",
    "kqueue",
    "iocp",
]
categories = [
    "asynchronous",
    "network-programming",
    "os",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/async-io"

[[bench]]
name = "io"
harness = false

[[bench]]
name = "timer"
harness = false

[dependencies.async-lock]
version = "3.0.0"

[dependencies.cfg-if]
version = "1"

[dependencies.concurrent-queue]
version = "2.2.0"

[dependencies.futures-io]
version = "0.3.28"
features = ["std"]
default-features = false

[dependencies.futures-lite]
version = "2.0.0"
default-features = false

[dependencies.parking]
version = "2.0.0"

[dependencies.polling]
version = "3.0.0"

[dependencies.rustix]
version = "0.38.2"
features = [
    "fs",
    "net",
    "std",
]
default-features = false

[dependencies.slab]
version = "0.4.2"

[dependencies.tracing]
version = "0.1.37"
default-features = false

[dev-dependencies.async-channel]
version = "2.0.0"

[dev-dependencies.async-net]
version = "2.0.0"

[dev-dependencies.blocking]
version = "1"

[dev-dependencies.criterion]
version = "0.4"
features = ["cargo_bench_support"]
default-features = false

[dev-dependencies.getrandom]
version = "0.2.7"

[dev-dependencies.signal-hook]
version = "0.3"

[dev-dependencies.tempfile]
version = "3"

[target."cfg(target_os = \"linux\")".dev-dependencies.inotify]
version = "0.10.1"
default-features = false

[target."cfg(target_os = \"linux\")".dev-dependencies.timerfd]
version = "1"


[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0