Fix deprecation warning of std.digest
std.digest.digest got renamed in 2.076.0 https://dlang.org/changelog/2.076.0.html#std-digest-package
This commit is contained in:
parent
32861ae74d
commit
4997fb4ad3
|
@ -444,7 +444,7 @@ struct DBusAny {
|
|||
valueStr = boolean ? "true" : "false";
|
||||
break;
|
||||
case 'a':
|
||||
import std.digest.digest : toHexString;
|
||||
import std.digest : toHexString;
|
||||
|
||||
if (signature == ['y']) {
|
||||
valueStr = "binary(" ~ binaryData.toHexString ~ ')';
|
||||
|
|
Loading…
Reference in a new issue