clean house

This commit is contained in:
Adam D. Ruppe 2019-12-06 22:07:26 -05:00
parent 7d1ae8f27c
commit 2a9df3b961
6 changed files with 14 additions and 8 deletions

2
cidr.d
View File

@ -1,5 +1,5 @@
/// ///
module cidr; module arsd.cidr;
/// ///
uint addressToUint(string address) { uint addressToUint(string address) {

View File

@ -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": "*",

View File

@ -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;

View File

@ -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;

View File

@ -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.

View File

@ -1,10 +1,10 @@
/************************ /* ***********************
This module is no longer maintained, use arsd.ttf instead. This module is no longer maintained, use arsd.ttf instead.
*************************/ *************************/
/// 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
// //