-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
44 lines (38 loc) · 1.04 KB
/
Cargo.toml
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
[package]
name = "async-signal"
version = "0.2.10"
edition = "2018"
authors = ["John Nunley <[email protected]>"]
rust-version = "1.63"
description = "Async signal handling"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/smol-rs/async-signal"
keywords = ["async", "signal", "signal-hook", "signal-hook-registry"]
categories = ["asynchronous", "concurrency", "os"]
exclude = ["/.*"]
[dependencies]
cfg-if = "1.0.0"
futures-core = "0.3.26"
[target.'cfg(unix)'.dependencies]
async-io = "2.0.0"
futures-io = "0.3.26"
rustix = { version = "0.38.15", default-features = false, features = ["process", "std"] }
signal-hook-registry = "1.4.0"
[target.'cfg(windows)'.dependencies]
async-lock = "3.3.0"
atomic-waker = "1.1.1"
slab = "0.4.8"
[target.'cfg(windows)'.dependencies.windows-sys]
version = "0.59"
default-features = false
features = [
"Win32_Foundation",
"Win32_System_Console",
]
[dev-dependencies]
async-io = "2.0.0"
fastrand = "2.0.1"
futures-lite = "2.3.0"
signal-hook = "0.3.14"
[target.'cfg(unix)'.dev-dependencies]
libc = "0.2.139"