mongrel2.nimble
author Mahlon E. Smith <mahlon@martini.nu>
Mon, 08 Oct 2018 12:51:09 -0700
changeset 5 c568094abee7
parent 4 ffb8b9920057
child 6 d49437ff8f2f
permissions -rw-r--r--
Fix nimble file for distribution.
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"
5
c568094abee7 Fix nimble file for distribution.
Mahlon E. Smith <mahlon@martini.nu>
parents: 4
diff changeset
     8
installExt    = @["nim"]
4
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