-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 863 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 863 Bytes
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
[package]
name = "starry-signal"
version = "0.3.0"
edition = "2024"
authors = ["Mivik <mivikq@gmail.com>", "朝倉水希 <asakuramizu111@gmail.com>"]
description = "Signal management library for Starry OS"
keywords = ["starry-os", "arceos", "signal", "ipc"]
license = "Apache-2.0"
repository = "https://github.com/Starry-OS/starry-signal"
[dependencies]
axcpu = { version = "0.3.0-preview.5", features = ["uspace"] }
bitflags = "2.6"
cfg-if = "1"
derive_more = { version = "2.0", default-features = false, features = ["full"] }
event-listener = { version = "5.4", default-features = false }
kspin = "0.1"
linux-raw-sys = { version = "0.12", default-features = false, features = [
"general",
"no_std",
] }
log = "0.4"
starry-vm = "0.3"
strum = { version = "0.27", default-features = false, features = ["derive"] }
[dev-dependencies]
extern-trait = "0.4"