diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2016-11-19 18:52:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-19 18:52:28 +0000 |
commit | 0ce459ac5344da7cda28600349a1f369e2df76c4 (patch) | |
tree | 1adc2a1b1b4ce4c46d774e0407ff6e9383b1e2f2 /lib | |
parent | 80744fe4f7c2194b8fdc39c5390108ef5b20de6e (diff) | |
download | Nim-0ce459ac5344da7cda28600349a1f369e2df76c4.tar.gz |
Add marshal format warning
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/marshal.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/pure/marshal.nim b/lib/pure/marshal.nim index 5eb8f7c1c..c4c731acf 100644 --- a/lib/pure/marshal.nim +++ b/lib/pure/marshal.nim @@ -9,6 +9,7 @@ ## This module contains procs for `serialization`:idx: and `deseralization`:idx: ## of arbitrary Nim data structures. The serialization format uses `JSON`:idx:. +## Warning: The serialization format could change in future! ## ## **Restriction**: For objects their type is **not** serialized. This means ## essentially that it does not work if the object has some other runtime |