Parsers for the GML language suite
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Basic setup

+56 -2
+28 -1
.gitignore
··· 14 14 # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 15 15 # and can be added to the global gitignore or merged into this file. For a more nuclear 16 16 # option (not recommended) you can uncomment the following to ignore the entire idea folder. 17 - #.idea/ 17 + #.idea/ 18 + 19 + # Added by cargo 20 + 21 + /target 22 + 23 + 24 + # Added by cargo 25 + # 26 + # already existing elements were commented out 27 + 28 + #/target 29 + 30 + 31 + # Added by cargo 32 + # 33 + # already existing elements were commented out 34 + 35 + #/target 36 + 37 + 38 + # Added by cargo 39 + # 40 + # already existing elements were commented out 41 + 42 + #/target 43 + 44 + .DS_Store
+7
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 4 4 + 5 + [[package]] 6 + name = "GML-parsers" 7 + version = "0.1.0"
+10
Cargo.toml
··· 1 + [package] 2 + name = "GML-parsers" 3 + version = "0.1.0" 4 + edition = "2024" 5 + 6 + [lib] 7 + name = "GML_parsers" 8 + 9 + 10 + [dependencies]
+8 -1
README.md
··· 1 1 # GML-parsers 2 - Parsers for the GML langage suite 2 + 3 + Parsers for the GML language suite 4 + 5 + GML is a Web language suite focused on good design decisions, simplicity, flexibility, and obsessing over every little detail to perfection. 6 + 7 + It consists of GMLOAD, GATTR, and GML, all of which should have their parsers implemented here 8 + 9 +
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
··· 1 + pub mod gmload_parser; 2 + pub mod gml_parser; 3 + pub mod gattr_parser;