···1414# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
1515# and can be added to the global gitignore or merged into this file. For a more nuclear
1616# option (not recommended) you can uncomment the following to ignore the entire idea folder.
1717-#.idea/1717+#.idea/
1818+1919+# Added by cargo
2020+2121+/target
2222+2323+2424+# Added by cargo
2525+#
2626+# already existing elements were commented out
2727+2828+#/target
2929+3030+3131+# Added by cargo
3232+#
3333+# already existing elements were commented out
3434+3535+#/target
3636+3737+3838+# Added by cargo
3939+#
4040+# already existing elements were commented out
4141+4242+#/target
4343+4444+.DS_Store
+7
Cargo.lock
···11+# This file is automatically @generated by Cargo.
22+# It is not intended for manual editing.
33+version = 4
44+55+[[package]]
66+name = "GML-parsers"
77+version = "0.1.0"
···11# GML-parsers
22-Parsers for the GML langage suite
22+33+Parsers for the GML language suite
44+55+GML is a Web language suite focused on good design decisions, simplicity, flexibility, and obsessing over every little detail to perfection.
66+77+It consists of GMLOAD, GATTR, and GML, all of which should have their parsers implemented here
88+99+
src/gattr_parser.rs
This is a binary file and will not be displayed.
src/gml_parser.rs
This is a binary file and will not be displayed.
src/gmload_parser.rs
This is a binary file and will not be displayed.
+3
src/lib.rs
···11+pub mod gmload_parser;
22+pub mod gml_parser;
33+pub mod gattr_parser;