summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 771089b9b6b440e8464a4d37dc69ac3daf0a82c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name        = "daglib"
version     = "0.1.0"
authors     = ["Matthias Beyer <mail@beyermatthias.de>"]
edition     = "2021"
description = "Generic async DAG library"

[dependencies]
async-trait = "0.1"
futures = "0.3"
thiserror = "1"
tokio = { version = "1", features = ["full"] }

[dev-dependencies]
tokio-test = "0.4"