f366c3e1ce
std/nre depends on PCRE v1 which is being deprecated by a number of major distributions (Debian specifically). The core Nim team does not have a plan currently to migrate it to PCRE v2. nitely/regex is a Nim-native PCRE-compatible replacement. AI-Assisted: yes AI-Tool: codex gpt-5.4 xhigh
18 lines
456 B
Nim
18 lines
456 B
Nim
# Package
|
|
|
|
version = "1.0.1"
|
|
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", "regex", "webby"]
|
|
|
|
task updateVersion, "Update the version of this package.":
|
|
exec "update_version interactive src/short_url.nim"
|