mirror of
https://github.com/status-im/NimYAML.git
synced 2025-02-04 15:33:56 +00:00
f60725fc93
* dumping doesn't work at CT * timestamps don't work at CT * aliases don't work at CT * renamed tserialization -> tnative to mirror rename of native.nim file * added comptime tests to tnative, currently only execute when doing nim nativeTests, because of compiler bug * Fixes #70, #91
12 lines
374 B
Nim
12 lines
374 B
Nim
# NimYAML - YAML implementation in Nim
|
|
# (c) Copyright 2015-2023 Felix Krause
|
|
#
|
|
# See the file "copying.txt", included in this
|
|
# distribution, for details about the copyright.
|
|
|
|
{.warning[UnusedImport]: off.}
|
|
import tlex, tjson, tnative, tparser, tquickstart, tannotations, thints, tpresenter
|
|
|
|
when not defined(gcArc) or defined(gcOrc):
|
|
import tdom
|