Files
short_url/short_url.nimble
T
Jonathan Bernard 5674c1e95c Initial version.
2025-07-26 19:30:54 -05:00

18 lines
447 B
Nim

# Package
version = "1.0.0"
author = "Jonathan Bernard"
description = "URL shortener/expander for Probatem at https://pbtm.us"
license = "GPL3"
srcDir = "src"
bin = @["short_url"]
# Dependencies
requires "nim >= 2.2.4"
requires @["cliutils", "mummy", "namespaced_logging >= 2.1.2", "webby"]
task updateVersion, "Update the version of this package.":
exec "update_version interactive src/short_url.nim"