mongrel2.nimble
author Mahlon E. Smith <mahlon@martini.nu>
Mon, 08 Oct 2018 12:31:27 -0700
changeset 4 ffb8b9920057
parent 2 46cbb042f2cb
child 5 c568094abee7
permissions -rw-r--r--
Re-arrange for use with nimble, updates for nim 0.19.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
ffb8b9920057 Re-arrange for use with nimble, updates for nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 2
diff changeset
     1
ffb8b9920057 Re-arrange for use with nimble, updates for nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 2
diff changeset
     2
# Package
ffb8b9920057 Re-arrange for use with nimble, updates for nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 2
diff changeset
     3
ffb8b9920057 Re-arrange for use with nimble, updates for nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 2
diff changeset
     4
version       = "0.1.1"
0
f480e159f575 Initial commit.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     5
author        = "Mahlon E. Smith <mahlon@martini.nu>"
f480e159f575 Initial commit.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     6
description   = "Simplistic handler framework for the Mongrel2 webserver."
f480e159f575 Initial commit.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
     7
license       = "MIT"
4
ffb8b9920057 Re-arrange for use with nimble, updates for nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 2
diff changeset
     8
installExt    = @["mongrel2"]
ffb8b9920057 Re-arrange for use with nimble, updates for nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 2
diff changeset
     9
srcDir        = "src"
0
f480e159f575 Initial commit.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
    10
4
ffb8b9920057 Re-arrange for use with nimble, updates for nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 2
diff changeset
    11
ffb8b9920057 Re-arrange for use with nimble, updates for nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 2
diff changeset
    12
# Dependencies
0
f480e159f575 Initial commit.
Mahlon E. Smith <mahlon@martini.nu>
parents:
diff changeset
    13
4
ffb8b9920057 Re-arrange for use with nimble, updates for nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 2
diff changeset
    14
requires "nim >= 0.19.0"
ffb8b9920057 Re-arrange for use with nimble, updates for nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 2
diff changeset
    15
requires "tnetstring >= 0.1.1"
ffb8b9920057 Re-arrange for use with nimble, updates for nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 2
diff changeset
    16
requires "zmq >= 0.2.1"
ffb8b9920057 Re-arrange for use with nimble, updates for nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 2
diff changeset
    17