-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 729 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (23 loc) · 729 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
[package]
name = "simple_coro"
version = "0.1.5"
edition = "2024"
authors = ["sminez <innes.andersonmorrison@gmail.com>"]
license = "MIT"
repository = "https://github.com/sminez/simple_coro"
readme = "README.md"
description = "(ab)using async/await to write simple state-machine based coroutines"
documentation = "https://docs.rs/simple_coro"
keywords = ["coroutine", "generator"]
categories = ["concurrency", "data-structures"]
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"docs.md"
]
[dependencies]
[dev-dependencies]
simple_test_case = "1"
tokio = { version = "1.43.0", features = ["macros", "net", "io-util", "rt", "sync", "time", "rt-multi-thread", "net", "io-util"] }
tokio-test = "0.4.5"