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) {
|
||||
|
|
1
dub.json
1
dub.json
|
@ -4,6 +4,7 @@
|
|||
"importPaths": ["."],
|
||||
"sourceFiles": ["package.d"],
|
||||
"description": "Subpackage collection for web, database, terminal ui, gui, scripting, and more.",
|
||||
"authors": ["Adam D. Ruppe"],
|
||||
"license":"BSL-1.0",
|
||||
"dependencies": {
|
||||
":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) {
|
||||
alias SslClientSocket = OpenSslSocket;
|
||||
|
||||
|
|
4
mangle.d
4
mangle.d
|
@ -1,5 +1,5 @@
|
|||
/// a D mangler
|
||||
module mangle;
|
||||
/// 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 arsd.mangle;
|
||||
|
||||
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
|
||||
bind/accept with these.
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/************************
|
||||
/* ***********************
|
||||
This module is no longer maintained, use arsd.ttf instead.
|
||||
*************************/
|
||||
|
||||
|
||||
/// stb_truetype.h - v0.6c - public domain
|
||||
/// authored from 2009-2012 by Sean Barrett / RAD Game Tools
|
||||
// stb_truetype.h - v0.6c - public domain
|
||||
// authored from 2009-2012 by Sean Barrett / RAD Game Tools
|
||||
//
|
||||
// http://nothings.org/stb/stb_truetype.h
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue