move to new phobos module

This commit is contained in:
Adam D. Ruppe 2013-08-21 16:20:40 -04:00
parent b5581ac1cb
commit a2fbd27b66
1 changed files with 5 additions and 2 deletions

7
curl.d
View File

@ -65,8 +65,11 @@ struct CurlOptions {
}
*/
//import std.digest.md;
import std.md5;
string getDigestString(string s) {
import std.digest.md;
return toHexString(md5Of(s));
}
//import std.md5;
import std.file;
/// this automatically caches to a local file for the given time. it ignores the expires header in favor of your time to keep.
version(linux)