-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (38 loc) · 1002 Bytes
/
Cargo.toml
File metadata and controls
47 lines (38 loc) · 1002 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "awkernel_async_lib"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pin-project = "1"
log = "0.4"
array-macro = "2.1"
fixedbitset = "0.5.7"
async-trait = "0.1"
async-recursion = "1.1"
[dependencies.futures]
version = "0.3"
default-features = false
features = ["alloc", "async-await"]
[dependencies.futures-util]
version = "0.3"
default-features = false
features = ["alloc", "async-await", "async-await-macro"]
[dependencies.awkernel_lib]
path = "../awkernel_lib"
default-features = false
[dependencies.awkernel_async_lib_verified]
path = "../awkernel_async_lib_verified"
[dependencies.awkernel_futures_macro]
path = "../awkernel_futures_macro"
[dependencies.smoltcp]
path = "../smoltcp"
default-features = false
features = ["awkernel"]
[features]
default = []
std = ["awkernel_lib/std", "no_preempt"]
no_preempt = []
spinlock = ["awkernel_lib/spinlock"]
clippy = []
perf = []