Incorporate a series of patches from Zack Smith.
- Allow a vhosts to not require a slash (use %2F in the URI, ignore literal '/')
- Support setting a custom 'id' subscription
FILES = src/stomp.nimCACHE = .cachedefault: developmentdevelopment: ${FILES} nim --debugInfo --assertions:on --linedir:on -d:ssl --define:debug --nimcache:${CACHE} c ${FILES} @mv src/stomp .autobuild: # find . -depth 1 -name \*.nim | entr -cp make echo ${FILES} | entr -c makedebugger: ${FILES} nim --debugger:on --nimcache:${CACHE} c ${FILES}release: ${FILES} nim -d:release --opt:speed --nimcache:${CACHE} c ${FILES} @mv src/stomp .docs: nim doc ${FILES} #nim buildIndex ${FILES}clean: cat .hgignore | xargs rm -rf