File: Cargo.toml

package info (click to toggle)
rust-async-signal 0.2.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 180 kB
  • sloc: makefile: 2
file content (110 lines) | stat: -rw-r--r-- 2,274 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
# 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.71"
name = "async-signal"
version = "0.2.13"
authors = ["John Nunley <dev@notgull.net>"]
build = false
exclude = ["/.*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async signal handling"
readme = "README.md"
keywords = [
    "async",
    "signal",
    "signal-hook",
    "signal-hook-registry",
]
categories = [
    "asynchronous",
    "concurrency",
    "os",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/async-signal"

[lib]
name = "async_signal"
path = "src/lib.rs"

[[example]]
name = "print"
path = "examples/print.rs"

[[test]]
name = "sigint"
path = "tests/sigint.rs"

[[test]]
name = "unix_signals"
path = "tests/unix_signals.rs"

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

[dependencies.futures-core]
version = "0.3.26"

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

[dev-dependencies.fastrand]
version = "2.0.1"

[dev-dependencies.futures-lite]
version = "2.3.0"

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

[target."cfg(unix)".dependencies.async-io]
version = "2.0.0"

[target."cfg(unix)".dependencies.futures-io]
version = "0.3.26"

[target."cfg(unix)".dependencies.rustix]
version = "1.0.7"
features = [
    "process",
    "std",
]
default-features = false

[target."cfg(unix)".dependencies.signal-hook-registry]
version = "1.4.0"

[target."cfg(unix)".dev-dependencies.libc]
version = "0.2.139"

[target."cfg(windows)".dependencies.async-lock]
version = "3.3.0"

[target."cfg(windows)".dependencies.atomic-waker]
version = "1.1.1"

[target."cfg(windows)".dependencies.slab]
version = "0.4.8"

[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
    "Win32_Foundation",
    "Win32_System_Console",
]
default-features = false