1# haikudepot - Build Scripts 2 3## Third Party Dependencies 4 5### ustasche 6 7The file `ustasche.py` was copied from [here](https://gitlab.com/ergoithz/ustache/-/raw/b78a72c9a194e467a9d4301e35c0b7c073ada909/ustache.py?inline=false) 2023-11-20 (`b78a72c9`) from the [ustache](https://gitlab.com/ergoithz/ustache) project. This is a single-file simple templating system for Python which is used to generate code for C++ models used in the parsing of data from HaikuDepotServer. 8 9The code is under MIT license; 10 11``` 12MIT License 13 14Copyright (c) 2021 Felipe A Hernandez <ergoithz@gmail.com> 15 16Permission is hereby granted, free of charge, to any person obtaining a copy 17of this software and associated documentation files (the "Software"), to deal 18in the Software without restriction, including without limitation the rights 19to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 20copies of the Software, and to permit persons to whom the Software is 21furnished to do so, subject to the following conditions: 22 23The above copyright notice and this permission notice shall be included in all 24copies or substantial portions of the Software. 25 26THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 27IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 28FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 29AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 30LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 31OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 32SOFTWARE. 33 34```