2016-02-27 12:09:50 +00:00
|
|
|
# NimYAML - YAML implementation in Nim
|
|
|
|
# (c) Copyright 2015 Felix Krause
|
|
|
|
#
|
|
|
|
# See the file "copying.txt", included in this
|
|
|
|
# distribution, for details about the copyright.
|
|
|
|
|
2023-03-13 21:06:07 +00:00
|
|
|
{.warning[UnusedImport]: off.}
|
2023-07-31 17:16:24 +00:00
|
|
|
import tlex, tjson, tserialization, tparser, tquickstart, tannotations, thints, tpresenter
|
2021-05-17 22:42:58 +00:00
|
|
|
|
|
|
|
when not defined(gcArc) or defined(gcOrc):
|
2023-04-10 15:17:03 +00:00
|
|
|
import tdom
|