-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 779 Bytes
/
Copy pathCargo.toml
File metadata and controls
25 lines (22 loc) · 779 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
[package]
name = "juggle"
version = "0.1.1"
authors = ["Kazik24 <kazik24official@gmail.com>"]
edition = "2018"
description = "Async task switching for cooperative multitasking in single thread environments with no_std support."
documentation = "https://docs.rs/juggle"
readme = "README.md"
homepage = "https://github.com/Kazik24/juggle"
repository = "https://github.com/Kazik24/juggle"
license = "MIT OR Apache-2.0"
keywords = ["async", "future", "single-thread", "non-preemptive", "schedule"]
categories = ["asynchronous", "embedded", "no-std"]
[features]
default = ["std"]
std = []
[dependencies]
smallvec = { version = "1.4.2", features = ["union"]}
once_cell = { version = "1.7.2", default-features = false, features = []}
[dev-dependencies]
rand = "0.7.3"
smol = "1.0.1"