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

license = "MPL-2.0"
repository = "https://github.com/matthiasbeyer/daglib"
documentation = "https://docs.rs/daglib"

[dependencies]
async-trait = "0.1"
futures = "0.3"
thiserror = "1"

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