-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 848 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 848 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 = "async-observable"
version = "0.5.0"
edition = "2021"
description = "Async & reactive synchronization model to keep multiple async tasks / threads partially synchronized."
authors = [
"Mara Schulke <mara.schulke@hum-systems.com>",
"Florian Uekermann <florian.uekermann@hum-systems.com>",
]
repository = "https://github.com/hemisphere-studio/async-observable"
documentation = "https://docs.rs/async-observable"
keywords = ["async", "await", "reactive", "observable", "synchronization"]
categories = ["asynchronous", "concurrency", "network-programming"]
readme = "README.md"
license = "MIT"
[dependencies]
uuid = { version = "1", features = ["v4"] }
futures = "0.3"
serde = { version = "1", optional = true }
[dev-dependencies]
async-std = { version = "1.12.0", features = ["attributes"] }
serde_json = "1"
serde_derive = "1"