gitextract_ukr27c6s/ ├── .cargo/ │ └── config.toml ├── .github/ │ └── workflows/ │ ├── ci.yml │ ├── publish.yml │ └── site.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benchmark/ │ ├── .gitignore │ ├── Cargo.toml │ ├── benches/ │ │ └── simple.rs │ ├── build.rs │ ├── impls.cpp │ ├── main.zng │ └── src/ │ └── lib.rs ├── cspell-words.txt ├── cspell.json ├── dprint.json ├── examples/ │ ├── .gitignore │ ├── char/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── NMakefile │ │ ├── expected_output.txt │ │ ├── main.cpp │ │ ├── main.zng │ │ └── src/ │ │ └── lib.rs │ ├── conditional/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── NMakefile │ │ ├── README.md │ │ ├── expected_output.txt │ │ ├── main.cpp │ │ ├── main.zng │ │ └── src/ │ │ └── lib.rs │ ├── cxx_demo/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── blobstore.cpp │ │ ├── build.rs │ │ ├── expected_output.txt │ │ ├── main.zng │ │ └── src/ │ │ └── main.rs │ ├── cxx_demo_split/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── blobstore.cpp │ │ ├── build.rs │ │ ├── expected_output.txt │ │ ├── main.zng │ │ └── src/ │ │ └── main.rs │ ├── impl_trait/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── NMakefile │ │ ├── README.md │ │ ├── expected_output.txt │ │ ├── main.cpp │ │ ├── main.zng │ │ └── src/ │ │ └── lib.rs │ ├── memory_management/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── NMakefile │ │ ├── README.md │ │ ├── expected_output.txt │ │ ├── main.cpp │ │ ├── main.zng │ │ └── src/ │ │ └── lib.rs │ ├── multiple_modules/ │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── aggregation/ │ │ │ ├── Cargo.toml │ │ │ ├── aggregation.zng │ │ │ ├── impls.cpp │ │ │ ├── src/ │ │ │ │ └── lib.rs │ │ │ └── stats.h │ │ ├── expected_output.txt │ │ ├── main.cpp │ │ ├── packet/ │ │ │ ├── Cargo.toml │ │ │ ├── packet.zng │ │ │ └── src/ │ │ │ └── lib.rs │ │ ├── processor/ │ │ │ ├── Cargo.toml │ │ │ ├── processor.zng │ │ │ └── src/ │ │ │ └── lib.rs │ │ ├── receiver/ │ │ │ ├── Cargo.toml │ │ │ ├── receiver.zng │ │ │ └── src/ │ │ │ └── lib.rs │ │ └── src/ │ │ └── lib.rs │ ├── raw_pointer/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── NMakefile │ │ ├── README.md │ │ ├── expected_output.txt │ │ ├── main.cpp │ │ ├── main.zng │ │ └── src/ │ │ └── lib.rs │ ├── rayon/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── NMakefile │ │ ├── README.md │ │ ├── expected_output.txt │ │ ├── main.cpp │ │ ├── main.zng │ │ └── src/ │ │ └── lib.rs │ ├── rayon_split/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── NMakefile │ │ ├── README.md │ │ ├── expected_output.txt │ │ ├── main.cpp │ │ ├── main.zng │ │ └── src/ │ │ └── lib.rs │ ├── regression_test1/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── NMakefile │ │ ├── README.md │ │ ├── expected_output.txt │ │ ├── main.cpp │ │ ├── main.zng │ │ └── src/ │ │ └── lib.rs │ ├── rustyline/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── NMakefile │ │ ├── README.md │ │ ├── expected_output.txt │ │ ├── main.cpp │ │ ├── main.zng │ │ └── src/ │ │ └── lib.rs │ ├── simple/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── NMakefile │ │ ├── README.md │ │ ├── expected_output.txt │ │ ├── main.cpp │ │ ├── main.zng │ │ └── src/ │ │ └── lib.rs │ ├── simple_import/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── NMakefile │ │ ├── README.md │ │ ├── bar.cpp │ │ ├── bar.zng │ │ ├── expected_output.txt │ │ ├── foo.cpp │ │ ├── foo.zng │ │ ├── main.cpp │ │ ├── main.zng │ │ ├── primitives.zng │ │ └── src/ │ │ └── lib.rs │ ├── tutorial/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── NMakefile │ │ ├── README.md │ │ ├── expected_output.txt │ │ ├── main.cpp │ │ ├── main.zng │ │ └── src/ │ │ └── lib.rs │ ├── tutorial-wasm32/ │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Makefile │ │ ├── NMakefile │ │ ├── README.md │ │ ├── expected_output.txt │ │ ├── main.cpp │ │ ├── main32.zng │ │ └── src/ │ │ └── lib.rs │ └── tutorial_cpp/ │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── expected_output.txt │ ├── impls.cpp │ ├── inventory.h │ ├── main.zng │ └── src/ │ └── main.rs ├── mise.toml ├── xtask/ │ ├── Cargo.toml │ └── src/ │ ├── ci.rs │ ├── format_book.rs │ ├── format_templates.rs │ └── main.rs ├── zngur/ │ ├── Cargo.toml │ └── src/ │ └── lib.rs ├── zngur-autozng/ │ ├── Cargo.toml │ └── src/ │ └── main.rs ├── zngur-cli/ │ ├── Cargo.toml │ └── src/ │ ├── cfg_extractor.rs │ └── main.rs ├── zngur-def/ │ ├── Cargo.toml │ └── src/ │ ├── lib.rs │ └── merge.rs ├── zngur-generator/ │ ├── Cargo.toml │ ├── src/ │ │ ├── cpp.rs │ │ ├── lib.rs │ │ ├── rust.rs │ │ └── template.rs │ └── templates/ │ ├── cpp_header.sptl │ ├── cpp_source.sptl │ └── zng_header.sptl └── zngur-parser/ ├── Cargo.toml └── src/ ├── cfg.rs ├── conditional.rs ├── lib.rs └── tests.rs