-
Notifications
You must be signed in to change notification settings - Fork 214
/
Copy pathCargo.toml
28 lines (25 loc) · 993 Bytes
/
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
[package]
name = "linux-syscall"
version = "0.1.0"
authors = ["Runji Wang <[email protected]>"]
edition = "2018"
description = "Linux syscalls implementation"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
bitflags = "1.3"
numeric-enum-macro = "0.2"
static_assertions = "1.1.0"
zircon-object = { path = "../zircon-object" }
linux-object = { path = "../linux-object" }
kernel-hal = { path = "../kernel-hal", default-features = false }
rcore-fs = { git = "https://github.com/rcore-os/rcore-fs", rev = "1a3246b" }
lazy_static = { version = "1.4", features = ["spin_no_std"] }
bitvec = { version = "0.22", default-features = false, features = ["alloc"] }
lock = { git = "https://github.com/DeathWish5/kernel-sync", rev = "8486b8" }
futures = { version = "0.3", default-features = false, features = [
"alloc",
"async-await",
] }
[dev-dependencies]
async-std = { version = "1.10", features = ["unstable"] }