···11+MIT License
22+33+Copyright (c) 2025 IamPyu <pyucreates@gmail.com>
44+55+Permission is hereby granted, free of charge, to any person obtaining a copy
66+of this software and associated documentation files (the "Software"), to deal
77+in the Software without restriction, including without limitation the rights
88+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99+copies of the Software, and to permit persons to whom the Software is
1010+furnished to do so, subject to the following conditions:
1111+1212+The above copyright notice and this permission notice shall be included in all
1313+copies or substantial portions of the Software.
1414+1515+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1616+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1717+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121+SOFTWARE.
+3
README.md
···11+# laz
22+33+Simple linear algebra library for Zig
···11+.{
22+ .name = .laz,
33+ .version = "0.1.0",
44+ // Together with name, this represents a globally unique package
55+ // identifier. This field is generated by the Zig toolchain when the
66+ // package is first created, and then *never changes*. This allows
77+ // unambiguous detection of one package being an updated version of
88+ // another.
99+ //
1010+ // When forking a Zig project, this id should be regenerated (delete the
1111+ // field and run `zig build`) if the upstream project is still maintained.
1212+ // Otherwise, the fork is *hostile*, attempting to take control over the
1313+ // original project's identity. Thus it is recommended to leave the comment
1414+ // on the following line intact, so that it shows up in code reviews that
1515+ // modify the field.
1616+ .fingerprint = 0x72ba2992beecd756, // Changing this has security and trust implications.
1717+ .minimum_zig_version = "0.15.2",
1818+ .dependencies = .{},
1919+ .paths = .{
2020+ "build.zig",
2121+ "build.zig.zon",
2222+ "src",
2323+ "LICENSE",
2424+ "README.md",
2525+ },
2626+}