From ad7977ae075927e03ae0e372152fe9f3b24073f3 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 4 Apr 2021 13:41:18 +0200 Subject: Fix: Make AsyncDag::get_next() pub Signed-off-by: Matthias Beyer --- src/async_dag.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/async_dag.rs b/src/async_dag.rs index 589ed9f..9f2d554 100644 --- a/src/async_dag.rs +++ b/src/async_dag.rs @@ -56,7 +56,7 @@ impl AsyncDag }) } - async fn get_next(&self, id: Id) -> Result> { + pub async fn get_next(&self, id: Id) -> Result> { self.backend .get(id) .await? -- cgit v1.2.3