mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* update to the latest Jester * remove deprecated procs from some stdlib modules * 'criterion' is not maintained anymore and relies on obsolete stuff
14 lines
185 B
Nim
14 lines
185 B
Nim
|
|
# bug #5237
|
|
|
|
import tables
|
|
import sets
|
|
import sequtils
|
|
|
|
|
|
const EXTENSIONMAP = {
|
|
"c": @["*.c", "*.h"],
|
|
}.toTable()
|
|
|
|
const EXTENSIONS = toHashSet(concat(toSeq(EXTENSIONMAP.values())))
|