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

[dependencies]
# TODO: Replace with thiserror
anyhow      = "1"

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

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