all repos — nimhttpd @ 91ac711138d852c71ab2dbc0f6bd72dc87e6fc36

A useful static file web server.

Added support for Nimble v0.9.0
h3rald h3rald@h3rald.com
Sun, 21 Oct 2018 14:14:50 +0200
commit

91ac711138d852c71ab2dbc0f6bd72dc87e6fc36

parent

d91ff9965b921bde36f715d3005d53df6b055384

2 files changed, 3 insertions(+), 2 deletions(-)

jump to
M nimhttpd.nimblenimhttpd.nimble

@@ -19,10 +19,11 @@ description = pkgDescription

license = "MIT" bin = @["nimhttpd"] srcDir = "src" +installExt = @["nim"] # Dependencies -requires "nim >= 0.18.0" +requires "nim >= 0.19.0" const compile = "nim c -d:release" const linux_x86 = "--cpu:i386 --os:linux -o:nimhttpd"
M src/nimhttpdpkg/config.nimsrc/nimhttpdpkg/config.nim

@@ -1,5 +1,5 @@

const pkgTitle* = "NimHTTPd" - pkgVersion* = "1.0.5" + pkgVersion* = "1.0.6" pkgAuthor* = "Fabio Cevasco" pkgDescription* = "A tiny static file web server."