From 8ea5ba7000e433f8363ca0a59b3fa1558a61c4fe Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Thu, 11 Sep 2025 14:47:02 +0800 Subject: [PATCH] move `std/parsesql` to nimble packages (#25156) pending https://github.com/nim-lang/packages/pull/3117 ref https://github.com/nim-lang/parsesql (cherry picked from commit f90951cc61190beb58c3049a43efb1862447b711) --- changelog.md | 2 ++ lib/pure/parsesql.nim | 2 ++ 2 files changed, 4 insertions(+) diff --git a/changelog.md b/changelog.md index 76da277edb..cf2d4cb170 100644 --- a/changelog.md +++ b/changelog.md @@ -23,6 +23,8 @@ errors. - With `-d:nimPreviewCStringComparisons`, comparsions (`<`, `>`, `<=`, `>=`) between cstrings switch from reference semantics to value semantics like `==` and `!=`. +- `std/parsesql` has been moved to a nimble package, use `nimble` or `atlas` to install it. + ## Standard library additions and changes [//]: # "Additions:" diff --git a/lib/pure/parsesql.nim b/lib/pure/parsesql.nim index 7bc6fcdcee..c02b6dddc6 100644 --- a/lib/pure/parsesql.nim +++ b/lib/pure/parsesql.nim @@ -12,6 +12,8 @@ ## ## Unstable API. +{.deprecated: "use `nimble install parsesql` and import `pkg/parsesql` instead".} + import std/[strutils, lexbase] import std/private/decode_helpers