stomp.nimble
author Mahlon E. Smith <mahlon@martini.nu>
Sun, 04 Apr 2021 15:56:16 -0700
changeset 8 363f275588ea
parent 5 e34aabaefe44
child 9 ad53c6500712
permissions -rw-r--r--
Fix value encoding to conform to spec. Thanks to Marcelo Módolo <marcelo.rmodolo@gmail.com> for the heads up.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
2f4e88604125 Re-arrange for nimble, update to Nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 0
diff changeset
     1
0
52e9f64937bf Initial commit.
Mahlon E. Smith <mahlon@laika.com>
parents:
diff changeset
     2
# Package
52e9f64937bf Initial commit.
Mahlon E. Smith <mahlon@laika.com>
parents:
diff changeset
     3
8
363f275588ea Fix value encoding to conform to spec.
Mahlon E. Smith <mahlon@martini.nu>
parents: 5
diff changeset
     4
version       = "0.1.2"
0
52e9f64937bf Initial commit.
Mahlon E. Smith <mahlon@laika.com>
parents:
diff changeset
     5
author        = "Mahlon E. Smith <mahlon@martini.nu>"
52e9f64937bf Initial commit.
Mahlon E. Smith <mahlon@laika.com>
parents:
diff changeset
     6
description   = "A pure-nim implementation of the STOMP protocol for machine messaging."
52e9f64937bf Initial commit.
Mahlon E. Smith <mahlon@laika.com>
parents:
diff changeset
     7
license       = "MIT"
5
e34aabaefe44 Fix nimble file for distribution.
Mahlon E. Smith <mahlon@martini.nu>
parents: 4
diff changeset
     8
installExt    = @["nim"]
4
2f4e88604125 Re-arrange for nimble, update to Nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 0
diff changeset
     9
srcDir        = "src"
2f4e88604125 Re-arrange for nimble, update to Nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 0
diff changeset
    10
0
52e9f64937bf Initial commit.
Mahlon E. Smith <mahlon@laika.com>
parents:
diff changeset
    11
52e9f64937bf Initial commit.
Mahlon E. Smith <mahlon@laika.com>
parents:
diff changeset
    12
# Dependencies
52e9f64937bf Initial commit.
Mahlon E. Smith <mahlon@laika.com>
parents:
diff changeset
    13
4
2f4e88604125 Re-arrange for nimble, update to Nim 0.19.
Mahlon E. Smith <mahlon@martini.nu>
parents: 0
diff changeset
    14
requires "nim >= 0.19.0"
0
52e9f64937bf Initial commit.
Mahlon E. Smith <mahlon@laika.com>
parents:
diff changeset
    15