author | Mahlon E. Smith <mahlon@martini.nu> |
Wed, 27 Oct 2021 13:57:16 -0700 | |
changeset 6 | d49437ff8f2f |
parent 5 | c568094abee7 |
permissions | -rw-r--r-- |
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 |
|
6
d49437ff8f2f
Updates for more recent (v1.6.0) nim.
Mahlon E. Smith <mahlon@martini.nu>
parents:
5
diff
changeset
|
4 |
version = "0.1.2" |
0 | 5 |
author = "Mahlon E. Smith <mahlon@martini.nu>" |
6 |
description = "Simplistic handler framework for the Mongrel2 webserver." |
|
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 | 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 | 13 |
|
6
d49437ff8f2f
Updates for more recent (v1.6.0) nim.
Mahlon E. Smith <mahlon@martini.nu>
parents:
5
diff
changeset
|
14 |
requires "nim >= 1.4.0" |
d49437ff8f2f
Updates for more recent (v1.6.0) nim.
Mahlon E. Smith <mahlon@martini.nu>
parents:
5
diff
changeset
|
15 |
requires "tnetstring >= 0.1.3" |
d49437ff8f2f
Updates for more recent (v1.6.0) nim.
Mahlon E. Smith <mahlon@martini.nu>
parents:
5
diff
changeset
|
16 |
requires "zmq >= 1.2.1" |
4
ffb8b9920057
Re-arrange for use with nimble, updates for nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents:
2
diff
changeset
|
17 |