mirror of https://github.com/adamdruppe/arsd.git
Merge 026e01c2d5
into 5ccf8b4ae0
This commit is contained in:
commit
3f0f4f0ca2
|
@ -40,7 +40,7 @@ module arsd.rtud;
|
|||
import std.string;
|
||||
import std.array : replace;
|
||||
import std.conv;
|
||||
import std.date;
|
||||
import std.datetime;
|
||||
|
||||
|
||||
class UpdateStream {
|
|
@ -653,8 +653,8 @@ extern(C) int callback(void* cb, int howmany, char** text, char** columns){
|
|||
|
||||
|
||||
extern(C){
|
||||
typedef void sqlite3;
|
||||
typedef void sqlite3_stmt;
|
||||
alias void sqlite3;
|
||||
alias void sqlite3_stmt;
|
||||
int sqlite3_changes(sqlite3*);
|
||||
int sqlite3_close(sqlite3 *);
|
||||
int sqlite3_exec(
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"name": "arsd",
|
||||
"description": "Collection of D modules I find useful",
|
||||
"homepage": "https://github.com/adamdruppe/misc-stuff-including-D-programming-language-web-stuff",
|
||||
"copyright": "Copyright © 2013, Adam D. Ruppe",
|
||||
"authors": [
|
||||
"Adam D. Ruppe"
|
||||
],
|
||||
"dependencies": {
|
||||
},
|
||||
"sourcePaths" : [
|
||||
"arsd"
|
||||
],
|
||||
"importPaths" : [
|
||||
"."
|
||||
],
|
||||
"excludedSourceFiles" : [
|
||||
"arsd/engine.d",
|
||||
"arsd/mssql.d",
|
||||
"arsd/audio.d",
|
||||
"arsd/screen.d",
|
||||
"arsd/dom.d",
|
||||
"arsd/png.d",
|
||||
"arsd/html.d",
|
||||
"arsd/web.d",
|
||||
"arsd/htmltotext.d",
|
||||
"arsd/image.d",
|
||||
"arsd/http.d",
|
||||
"arsd/netman.d"
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue