diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2023-10-31 00:03:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-30 17:03:04 +0100 |
commit | 4d11d0619d11d8aecdaff998981efcd054de9760 (patch) | |
tree | d098736002228d600e3232f6ab6d8347872224c8 /lib/pure/asyncfutures.nim | |
parent | 403e0118ae8d099384e9bd6a046c2114538503b8 (diff) | |
download | Nim-4d11d0619d11d8aecdaff998981efcd054de9760.tar.gz |
complete std prefixes for stdlib (#22887)
follow up https://github.com/nim-lang/Nim/pull/22851 follow up https://github.com/nim-lang/Nim/pull/22873
Diffstat (limited to 'lib/pure/asyncfutures.nim')
-rw-r--r-- | lib/pure/asyncfutures.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/asyncfutures.nim b/lib/pure/asyncfutures.nim index 51aaaca36..edb4e14d3 100644 --- a/lib/pure/asyncfutures.nim +++ b/lib/pure/asyncfutures.nim @@ -7,7 +7,7 @@ # distribution, for details about the copyright. # -import os, tables, strutils, times, heapqueue, options, deques, cstrutils +import std/[os, tables, strutils, times, heapqueue, options, deques, cstrutils] import system/stacktraces @@ -51,7 +51,7 @@ const NimAsyncContinueSuffix* = "NimAsyncContinue" ## For internal usage. Do not use. when isFutureLoggingEnabled: - import hashes + import std/hashes type FutureInfo* = object stackTrace*: seq[StackTraceEntry] |