From 2f22d38cb04913e1048339b6a14ef6117812fe8c Mon Sep 17 00:00:00 2001 From: abraunegg Date: Tue, 12 May 2020 10:50:36 +1000 Subject: [PATCH] Fix module std.digest.digest is deprecated (#916) * Fix module std.digest.digest as this is deprecated when using DMD 2.092 and above --- src/qxor.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qxor.d b/src/qxor.d index c9cfc874..0e521a49 100644 --- a/src/qxor.d +++ b/src/qxor.d @@ -1,5 +1,5 @@ import std.algorithm; -import std.digest.digest; +import std.digest; // implementation of the QuickXorHash algorithm in D // https://github.com/OneDrive/onedrive-api-docs/blob/live/docs/code-snippets/quickxorhash.md