mirror of
https://github.com/status-im/nim-stew.git
synced 2025-01-24 10:59:13 +00:00
2cf408b960
Since the results package has seen "stable" use for quite a while now, it's as good time a time as any to release 1.0 and migrate it out of stew, thus signalling API stability of some sort. Part of that "stabilization" is underway in the nim-results [issue tracker](https://github.com/arnetheduck/nim-results/issues/30).
10 lines
395 B
Nim
10 lines
395 B
Nim
# This module has graduated from stew and is now available from the
|
|
# `results` nimble package instead (https://github.com/arnetheduck/nim-results)
|
|
|
|
when defined(stewWarnResults):
|
|
# This deprecation notice will be made default in some future stew commit
|
|
{.deprecated: "`stew/results` is now availabe as `import results` via the `results` Nimble package".}
|
|
|
|
import pkg/results
|
|
export results
|