all repos — nimhttpd @ fccdd200ab5374e9385a442396121b0f8b9c0e2e

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

fccdd200ab5374e9385a442396121b0f8b9c0e2e

parent

e619b7d3b907ce09cd779746a27c9697f88cf2a1

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