mirror of https://github.com/adamdruppe/arsd.git
clean house
This commit is contained in:
parent
7d1ae8f27c
commit
2a9df3b961
2
cidr.d
2
cidr.d
|
@ -1,5 +1,5 @@
|
||||||
///
|
///
|
||||||
module cidr;
|
module arsd.cidr;
|
||||||
|
|
||||||
///
|
///
|
||||||
uint addressToUint(string address) {
|
uint addressToUint(string address) {
|
||||||
|
|
1
dub.json
1
dub.json
|
@ -4,6 +4,7 @@
|
||||||
"importPaths": ["."],
|
"importPaths": ["."],
|
||||||
"sourceFiles": ["package.d"],
|
"sourceFiles": ["package.d"],
|
||||||
"description": "Subpackage collection for web, database, terminal ui, gui, scripting, and more.",
|
"description": "Subpackage collection for web, database, terminal ui, gui, scripting, and more.",
|
||||||
|
"authors": ["Adam D. Ruppe"],
|
||||||
"license":"BSL-1.0",
|
"license":"BSL-1.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
":simpledisplay": "*",
|
":simpledisplay": "*",
|
||||||
|
|
2
http2.d
2
http2.d
|
@ -1542,7 +1542,7 @@ void main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// From sslsocket.d
|
// From sslsocket.d, but this is the maintained version!
|
||||||
version(use_openssl) {
|
version(use_openssl) {
|
||||||
alias SslClientSocket = OpenSslSocket;
|
alias SslClientSocket = OpenSslSocket;
|
||||||
|
|
||||||
|
|
4
mangle.d
4
mangle.d
|
@ -1,5 +1,5 @@
|
||||||
/// a D mangler
|
/// a D name mangler. You probably do not need this, use the language's built in `.mangleof` property instead. I don't even remember why I wrote it.
|
||||||
module mangle;
|
module arsd.mangle;
|
||||||
|
|
||||||
import std.conv;
|
import std.conv;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
/* *
|
/* *
|
||||||
|
|
||||||
|
Don't use this file anymore. The maintained version is in http2.d, just use that.
|
||||||
|
|
||||||
|
Old docs below:
|
||||||
|
|
||||||
This is CLIENT only at this point. Don't try to
|
This is CLIENT only at this point. Don't try to
|
||||||
bind/accept with these.
|
bind/accept with these.
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
*************************/
|
*************************/
|
||||||
|
|
||||||
|
|
||||||
/// stb_truetype.h - v0.6c - public domain
|
// stb_truetype.h - v0.6c - public domain
|
||||||
/// authored from 2009-2012 by Sean Barrett / RAD Game Tools
|
// authored from 2009-2012 by Sean Barrett / RAD Game Tools
|
||||||
//
|
//
|
||||||
// http://nothings.org/stb/stb_truetype.h
|
// http://nothings.org/stb/stb_truetype.h
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue