Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

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

Include dependency licences

+682 -1
+1 -1
LICENCE
··· 186 186 same "printed page" as the copyright notice for easier 187 187 identification within third-party archives. 188 188 189 - Copyright 2016 - present Louis Pilfold 189 + Copyright [yyyy] [name of copyright owner] 190 190 191 191 Licensed under the Apache License, Version 2.0 (the "License"); 192 192 you may not use this file except in compliance with the License.
+3
compiler-core/src/lib.rs
··· 98 98 pub(crate) mod inline; 99 99 pub mod reference; 100 100 101 + #[cfg(test)] 102 + mod tests; 103 + 101 104 pub use error::{Error, Result}; 102 105 pub use warning::Warning; 103 106
+44
compiler-core/src/tests.rs
··· 1 + use std::path::PathBuf; 2 + 3 + use itertools::Itertools; 4 + use serde::Deserialize; 5 + 6 + #[test] 7 + fn licence_files_exist_in_repo() { 8 + #[derive(Deserialize)] 9 + struct CargoDenoConfig { 10 + licenses: CargoDenoLicensesConfig, 11 + } 12 + 13 + #[derive(Deserialize)] 14 + struct CargoDenoLicensesConfig { 15 + allow: Vec<String>, 16 + } 17 + 18 + // deny.toml specified which licences dependencies are permitted to have. 19 + let toml = std::fs::read_to_string("../deny.toml").unwrap(); 20 + let CargoDenoConfig { 21 + licenses: CargoDenoLicensesConfig { 22 + allow: dependency_licences, 23 + }, 24 + } = toml::from_str(&toml).unwrap(); 25 + 26 + // Each licence must exist in the licences directory. 27 + let licences_directory = PathBuf::from("../licences"); 28 + let licences_missing_licence_file = dependency_licences 29 + .iter() 30 + .filter(|licence| { 31 + let path = licences_directory.join(format!("{licence}.txt")); 32 + !std::fs::exists(path).unwrap() 33 + }) 34 + .collect_vec(); 35 + 36 + assert!( 37 + licences_missing_licence_file.is_empty(), 38 + " 39 + All dependency licences must exist in the licences directory. 40 + These licences are missing their file: 41 + 42 + {licences_missing_licence_file:?}" 43 + ); 44 + }
+73
licences/Apache-2.0.txt
··· 1 + Apache License 2 + Version 2.0, January 2004 3 + http://www.apache.org/licenses/ 4 + 5 + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 + 7 + 1. Definitions. 8 + 9 + "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. 10 + 11 + "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. 12 + 13 + "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. 14 + 15 + "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. 16 + 17 + "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. 18 + 19 + "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. 20 + 21 + "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). 22 + 23 + "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. 24 + 25 + "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." 26 + 27 + "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 28 + 29 + 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 30 + 31 + 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 32 + 33 + 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: 34 + 35 + (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and 36 + 37 + (b) You must cause any modified files to carry prominent notices stating that You changed the files; and 38 + 39 + (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and 40 + 41 + (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. 42 + 43 + You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 44 + 45 + 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 46 + 47 + 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 48 + 49 + 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 50 + 51 + 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 52 + 53 + 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. 54 + 55 + END OF TERMS AND CONDITIONS 56 + 57 + APPENDIX: How to apply the Apache License to your work. 58 + 59 + To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. 60 + 61 + Copyright [yyyy] [name of copyright owner] 62 + 63 + Licensed under the Apache License, Version 2.0 (the "License"); 64 + you may not use this file except in compliance with the License. 65 + You may obtain a copy of the License at 66 + 67 + http://www.apache.org/licenses/LICENSE-2.0 68 + 69 + Unless required by applicable law or agreed to in writing, software 70 + distributed under the License is distributed on an "AS IS" BASIS, 71 + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 72 + See the License for the specific language governing permissions and 73 + limitations under the License.
+9
licences/BSD-3-Clause.txt
··· 1 + Copyright (c) <year> <owner>. 2 + 3 + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 4 + 5 + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 6 + 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 7 + 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 8 + 9 + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+5
licences/BSL-1.0.txt
··· 1 + Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the “Software”) to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: 2 + 3 + The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor. 4 + 5 + THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+121
licences/CC0-1.0.txt
··· 1 + Creative Commons Legal Code 2 + 3 + CC0 1.0 Universal 4 + 5 + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 + HEREUNDER. 13 + 14 + Statement of Purpose 15 + 16 + The laws of most jurisdictions throughout the world automatically confer 17 + exclusive Copyright and Related Rights (defined below) upon the creator 18 + and subsequent owner(s) (each and all, an "owner") of an original work of 19 + authorship and/or a database (each, a "Work"). 20 + 21 + Certain owners wish to permanently relinquish those rights to a Work for 22 + the purpose of contributing to a commons of creative, cultural and 23 + scientific works ("Commons") that the public can reliably and without fear 24 + of later claims of infringement build upon, modify, incorporate in other 25 + works, reuse and redistribute as freely as possible in any form whatsoever 26 + and for any purposes, including without limitation commercial purposes. 27 + These owners may contribute to the Commons to promote the ideal of a free 28 + culture and the further production of creative, cultural and scientific 29 + works, or to gain reputation or greater distribution for their Work in 30 + part through the use and efforts of others. 31 + 32 + For these and/or other purposes and motivations, and without any 33 + expectation of additional consideration or compensation, the person 34 + associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 + is an owner of Copyright and Related Rights in the Work, voluntarily 36 + elects to apply CC0 to the Work and publicly distribute the Work under its 37 + terms, with knowledge of his or her Copyright and Related Rights in the 38 + Work and the meaning and intended legal effect of CC0 on those rights. 39 + 40 + 1. Copyright and Related Rights. A Work made available under CC0 may be 41 + protected by copyright and related or neighboring rights ("Copyright and 42 + Related Rights"). Copyright and Related Rights include, but are not 43 + limited to, the following: 44 + 45 + i. the right to reproduce, adapt, distribute, perform, display, 46 + communicate, and translate a Work; 47 + ii. moral rights retained by the original author(s) and/or performer(s); 48 + iii. publicity and privacy rights pertaining to a person's image or 49 + likeness depicted in a Work; 50 + iv. rights protecting against unfair competition in regards to a Work, 51 + subject to the limitations in paragraph 4(a), below; 52 + v. rights protecting the extraction, dissemination, use and reuse of data 53 + in a Work; 54 + vi. database rights (such as those arising under Directive 96/9/EC of the 55 + European Parliament and of the Council of 11 March 1996 on the legal 56 + protection of databases, and under any national implementation 57 + thereof, including any amended or successor version of such 58 + directive); and 59 + vii. other similar, equivalent or corresponding rights throughout the 60 + world based on applicable law or treaty, and any national 61 + implementations thereof. 62 + 63 + 2. Waiver. To the greatest extent permitted by, but not in contravention 64 + of, applicable law, Affirmer hereby overtly, fully, permanently, 65 + irrevocably and unconditionally waives, abandons, and surrenders all of 66 + Affirmer's Copyright and Related Rights and associated claims and causes 67 + of action, whether now known or unknown (including existing as well as 68 + future claims and causes of action), in the Work (i) in all territories 69 + worldwide, (ii) for the maximum duration provided by applicable law or 70 + treaty (including future time extensions), (iii) in any current or future 71 + medium and for any number of copies, and (iv) for any purpose whatsoever, 72 + including without limitation commercial, advertising or promotional 73 + purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 + member of the public at large and to the detriment of Affirmer's heirs and 75 + successors, fully intending that such Waiver shall not be subject to 76 + revocation, rescission, cancellation, termination, or any other legal or 77 + equitable action to disrupt the quiet enjoyment of the Work by the public 78 + as contemplated by Affirmer's express Statement of Purpose. 79 + 80 + 3. Public License Fallback. Should any part of the Waiver for any reason 81 + be judged legally invalid or ineffective under applicable law, then the 82 + Waiver shall be preserved to the maximum extent permitted taking into 83 + account Affirmer's express Statement of Purpose. In addition, to the 84 + extent the Waiver is so judged Affirmer hereby grants to each affected 85 + person a royalty-free, non transferable, non sublicensable, non exclusive, 86 + irrevocable and unconditional license to exercise Affirmer's Copyright and 87 + Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 + maximum duration provided by applicable law or treaty (including future 89 + time extensions), (iii) in any current or future medium and for any number 90 + of copies, and (iv) for any purpose whatsoever, including without 91 + limitation commercial, advertising or promotional purposes (the 92 + "License"). The License shall be deemed effective as of the date CC0 was 93 + applied by Affirmer to the Work. Should any part of the License for any 94 + reason be judged legally invalid or ineffective under applicable law, such 95 + partial invalidity or ineffectiveness shall not invalidate the remainder 96 + of the License, and in such case Affirmer hereby affirms that he or she 97 + will not (i) exercise any of his or her remaining Copyright and Related 98 + Rights in the Work or (ii) assert any associated claims and causes of 99 + action with respect to the Work, in either case contrary to Affirmer's 100 + express Statement of Purpose. 101 + 102 + 4. Limitations and Disclaimers. 103 + 104 + a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 + surrendered, licensed or otherwise affected by this document. 106 + b. Affirmer offers the Work as-is and makes no representations or 107 + warranties of any kind concerning the Work, express, implied, 108 + statutory or otherwise, including without limitation warranties of 109 + title, merchantability, fitness for a particular purpose, non 110 + infringement, or the absence of latent or other defects, accuracy, or 111 + the present or absence of errors, whether or not discoverable, all to 112 + the greatest extent permissible under applicable law. 113 + c. Affirmer disclaims responsibility for clearing rights of other persons 114 + that may apply to the Work or any use thereof, including without 115 + limitation any person's Copyright and Related Rights in the Work. 116 + Further, Affirmer disclaims responsibility for obtaining any necessary 117 + consents, permissions or other rights required for any use of the 118 + Work. 119 + d. Affirmer understands and acknowledges that Creative Commons is not a 120 + party to this document and has no duty or obligation with respect to 121 + this CC0 or use of the Work.
+35
licences/CDLA-Permissive-2.0.txt
··· 1 + Community Data License Agreement - Permissive - Version 2.0 2 + 3 + This is the Community Data License Agreement - Permissive, Version 2.0 (the "agreement"). Data Provider(s) and Data Recipient(s) agree as follows: 4 + 5 + 1. Provision of the Data 6 + 7 + 1.1. A Data Recipient may use, modify, and share the Data made available by Data Provider(s) under this agreement if that Data Recipient follows the terms of this agreement. 8 + 9 + 1.2. This agreement does not impose any restriction on a Data Recipient's use, modification, or sharing of any portions of the Data that are in the public domain or that may be used, modified, or shared under any other legal exception or limitation. 10 + 11 + 2. Conditions for Sharing Data 12 + 13 + 2.1. A Data Recipient may share Data, with or without modifications, so long as the Data Recipient makes available the text of this agreement with the shared Data. 14 + 15 + 3. No Restrictions on Results 16 + 17 + 3.1. This agreement does not impose any restriction or obligations with respect to the use, modification, or sharing of Results. 18 + 19 + 4. No Warranty; Limitation of Liability 20 + 21 + 4.1. All Data Recipients receive the Data subject to the following terms: 22 + 23 + THE DATA IS PROVIDED ON AN "AS IS" BASIS, WITHOUT REPRESENTATIONS, WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. 24 + 25 + NO DATA PROVIDER SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE DATA OR RESULTS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 26 + 27 + 5. Definitions 28 + 29 + 5.1. "Data" means the material received by a Data Recipient under this agreement. 30 + 31 + 5.2. "Data Provider" means any person who is the source of Data provided under this agreement and in reliance on a Data Recipient's agreement to its terms. 32 + 33 + 5.3. "Data Recipient" means any person who receives Data directly or indirectly from a Data Provider and agrees to the terms of this agreement. 34 + 35 + 5.4. "Results" means any outcome obtained by computational analysis of Data, including for example machine learning models and models' insights.
+7
licences/ISC.txt
··· 1 + ISC License 2 + 3 + <copyright notice> 4 + 5 + Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. 6 + 7 + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+9
licences/MIT.txt
··· 1 + MIT License 2 + 3 + Copyright (c) <year> <copyright holders> 4 + 5 + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 + 7 + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 + 9 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+319
licences/MPL-2.0.txt
··· 1 + Mozilla Public License, version 2.0 2 + 3 + Copyright (c) {YEAR}, {AUTHOR} 4 + 5 + 1. Definitions 6 + 7 + 1.1. “Contributor” means each individual or legal entity that 8 + creates, contributes to the creation of, or owns Covered Software. 9 + 10 + 1.2. “Contributor Version” means the combination of the 11 + Contributions of others (if any) used by a Contributor and that 12 + particular Contributor’s Contribution. 13 + 14 + 1.3. “Contribution” means Covered Software of a particular 15 + Contributor. 16 + 17 + 1.4. “Covered Software” means Source Code Form to which the initial 18 + Contributor has attached the notice in Exhibit A, the Executable 19 + Form of such Source Code Form, and Modifications of such Source Code 20 + Form, in each case including portions thereof. 21 + 22 + 1.5. “Incompatible With Secondary Licenses” means 23 + 24 + that the initial Contributor has attached the notice described in 25 + Exhibit B to the Covered Software; or 26 + 27 + that the Covered Software was made available under the terms of 28 + version 1.1 or earlier of the License, but not also under the terms 29 + of a Secondary License. 30 + 31 + 1.6. “Executable Form” means any form of the work other than Source 32 + Code Form. 33 + 34 + 1.7. “Larger Work” means a work that combines Covered Software with 35 + other material, in a separate file or files, that is not Covered 36 + Software. 37 + 38 + 1.8. “License” means this document. 39 + 40 + 1.9. “Licensable” means having the right to grant, to the maximum 41 + extent possible, whether at the time of the initial grant or 42 + subsequently, any and all of the rights conveyed by this License. 43 + 44 + 1.10. “Modifications” means any of the following: 45 + 46 + any file in Source Code Form that results from an addition to, 47 + deletion from, or modification of the contents of Covered Software; 48 + or 49 + 50 + any new file in Source Code Form that contains any Covered Software. 51 + 52 + 1.11. “Patent Claims” of a Contributor means any patent claim(s), 53 + including without limitation, method, process, and apparatus claims, 54 + in any patent Licensable by such Contributor that would be 55 + infringed, but for the grant of the License, by the making, using, 56 + selling, offering for sale, having made, import, or transfer of 57 + either its Contributions or its Contributor Version. 58 + 59 + 1.12. “Secondary License” means either the GNU General Public 60 + License, Version 2.0, the GNU Lesser General Public License, Version 61 + 2.1, the GNU Affero General Public License, Version 3.0, or any 62 + later versions of those licenses. 63 + 64 + 1.13. “Source Code Form” means the form of the work preferred for 65 + making modifications. 66 + 67 + 1.14. “You” (or “Your”) means an individual or a legal entity 68 + exercising rights under this License. For legal entities, “You” 69 + includes any entity that controls, is controlled by, or is under 70 + common control with You. For purposes of this definition, “control” 71 + means (a) the power, direct or indirect, to cause the direction or 72 + management of such entity, whether by contract or otherwise, or (b) 73 + ownership of more than fifty percent (50%) of the outstanding shares 74 + or beneficial ownership of such entity. 75 + 76 + 77 + 2. License Grants and Conditions 78 + 79 + 2.1. Grants Each Contributor hereby grants You a world-wide, 80 + royalty-free, non-exclusive license: 81 + 82 + under intellectual property rights (other than patent or trademark) 83 + Licensable by such Contributor to use, reproduce, make available, 84 + modify, display, perform, distribute, and otherwise exploit its 85 + Contributions, either on an unmodified basis, with Modifications, or 86 + as part of a Larger Work; and 87 + 88 + under Patent Claims of such Contributor to make, use, sell, offer 89 + for sale, have made, import, and otherwise transfer either its 90 + Contributions or its Contributor Version. 91 + 92 + 2.2. Effective Date The licenses granted in Section 2.1 with respect 93 + to any Contribution become effective for each Contribution on the 94 + date the Contributor first distributes such Contribution. 95 + 96 + 2.3. Limitations on Grant Scope The licenses granted in this Section 97 + 2 are the only rights granted under this License. No additional 98 + rights or licenses will be implied from the distribution or 99 + licensing of Covered Software under this License. Notwithstanding 100 + Section 2.1(b) above, no patent license is granted by a Contributor: 101 + 102 + for any code that a Contributor has removed from Covered Software; 103 + or 104 + 105 + for infringements caused by: (i) Your and any other third party’s 106 + modifications of Covered Software, or (ii) the combination of its 107 + Contributions with other software (except as part of its Contributor 108 + Version); or 109 + 110 + under Patent Claims infringed by Covered Software in the absence of 111 + its Contributions. 112 + 113 + This License does not grant any rights in the trademarks, service 114 + marks, or logos of any Contributor (except as may be necessary to 115 + comply with the notice requirements in Section 3.4). 116 + 117 + 2.4. Subsequent Licenses No Contributor makes additional grants as a 118 + result of Your choice to distribute the Covered Software under a 119 + subsequent version of this License (see Section 10.2) or under the 120 + terms of a Secondary License (if permitted under the terms of 121 + Section 3.3). 122 + 123 + 2.5. Representation Each Contributor represents that the Contributor 124 + believes its Contributions are its original creation(s) or it has 125 + sufficient rights to grant the rights to its Contributions conveyed 126 + by this License. 127 + 128 + 2.6. Fair Use This License is not intended to limit any rights You 129 + have under applicable copyright doctrines of fair use, fair dealing, 130 + or other equivalents. 131 + 132 + 2.7. Conditions Sections 3.1, 3.2, 3.3, and 3.4 are conditions of 133 + the licenses granted in Section 2.1. 134 + 135 + 136 + 3. Responsibilities 137 + 138 + 3.1. Distribution of Source Form All distribution of Covered 139 + Software in Source Code Form, including any Modifications that You 140 + create or to which You contribute, must be under the terms of this 141 + License. You must inform recipients that the Source Code Form of the 142 + Covered Software is governed by the terms of this License, and how 143 + they can obtain a copy of this License. You may not attempt to alter 144 + or restrict the recipients’ rights in the Source Code Form. 145 + 146 + 3.2. Distribution of Executable Form If You distribute Covered 147 + Software in Executable Form then: 148 + 149 + such Covered Software must also be made available in Source Code 150 + Form, as described in Section 3.1, and You must inform recipients of 151 + the Executable Form how they can obtain a copy of such Source Code 152 + Form by reasonable means in a timely manner, at a charge no more 153 + than the cost of distribution to the recipient; and 154 + 155 + You may distribute such Executable Form under the terms of this 156 + License, or sublicense it under different terms, provided that the 157 + license for the Executable Form does not attempt to limit or alter 158 + the recipients’ rights in the Source Code Form under this License. 159 + 160 + 3.3. Distribution of a Larger Work You may create and distribute a 161 + Larger Work under terms of Your choice, provided that You also 162 + comply with the requirements of this License for the Covered 163 + Software. If the Larger Work is a combination of Covered Software 164 + with a work governed by one or more Secondary Licenses, and the 165 + Covered Software is not Incompatible With Secondary Licenses, this 166 + License permits You to additionally distribute such Covered Software 167 + under the terms of such Secondary License(s), so that the recipient 168 + of the Larger Work may, at their option, further distribute the 169 + Covered Software under the terms of either this License or such 170 + Secondary License(s). 171 + 172 + 3.4. Notices You may not remove or alter the substance of any 173 + license notices (including copyright notices, patent notices, 174 + disclaimers of warranty, or limitations of liability) contained 175 + within the Source Code Form of the Covered Software, except that You 176 + may alter any license notices to the extent required to remedy known 177 + factual inaccuracies. 178 + 179 + 3.5. Application of Additional Terms You may choose to offer, and to 180 + charge a fee for, warranty, support, indemnity or liability 181 + obligations to one or more recipients of Covered Software. However, 182 + You may do so only on Your own behalf, and not on behalf of any 183 + Contributor. You must make it absolutely clear that any such 184 + warranty, support, indemnity, or liability obligation is offered by 185 + You alone, and You hereby agree to indemnify every Contributor for 186 + any liability incurred by such Contributor as a result of warranty, 187 + support, indemnity or liability terms You offer. You may include 188 + additional disclaimers of warranty and limitations of liability 189 + specific to any jurisdiction. 190 + 191 + 192 + 4. Inability to Comply Due to Statute or Regulation 193 + 194 + If it is impossible for You to comply with any of the terms of this 195 + License with respect to some or all of the Covered Software due to 196 + statute, judicial order, or regulation then You must: (a) comply 197 + with the terms of this License to the maximum extent possible; and 198 + (b) describe the limitations and the code they affect. Such 199 + description must be placed in a text file included with all 200 + distributions of the Covered Software under this License. Except to 201 + the extent prohibited by statute or regulation, such description 202 + must be sufficiently detailed for a recipient of ordinary skill to 203 + be able to understand it. 204 + 205 + 206 + 5. Termination 207 + 208 + 5.1. The rights granted under this License will terminate 209 + automatically if You fail to comply with any of its terms. However, 210 + if You become compliant, then the rights granted under this License 211 + from a particular Contributor are reinstated (a) provisionally, 212 + unless and until such Contributor explicitly and finally terminates 213 + Your grants, and (b) on an ongoing basis, if such Contributor fails 214 + to notify You of the non-compliance by some reasonable means prior 215 + to 60 days after You have come back into compliance. Moreover, Your 216 + grants from a particular Contributor are reinstated on an ongoing 217 + basis if such Contributor notifies You of the non-compliance by some 218 + reasonable means, this is the first time You have received notice of 219 + non-compliance with this License from such Contributor, and You 220 + become compliant prior to 30 days after Your receipt of the notice. 221 + 222 + 5.2. If You initiate litigation against any entity by asserting a 223 + patent infringement claim (excluding declaratory judgment actions, 224 + counter-claims, and cross-claims) alleging that a Contributor 225 + Version directly or indirectly infringes any patent, then the rights 226 + granted to You by any and all Contributors for the Covered Software 227 + under Section 2.1 of this License shall terminate. 228 + 229 + 5.3. In the event of termination under Sections 5.1 or 5.2 above, 230 + all end user license agreements (excluding distributors and 231 + resellers) which have been validly granted by You or Your 232 + distributors under this License prior to termination shall survive 233 + termination. 234 + 235 + 6. Disclaimer of Warranty Covered Software is provided under this 236 + License on an “as is” basis, without warranty of any kind, either 237 + expressed, implied, or statutory, including, without limitation, 238 + warranties that the Covered Software is free of defects, merchantable, 239 + fit for a particular purpose or non-infringing. The entire risk as to 240 + the quality and performance of the Covered Software is with You. 241 + Should any Covered Software prove defective in any respect, You (not 242 + any Contributor) assume the cost of any necessary servicing, repair, 243 + or correction. This disclaimer of warranty constitutes an essential 244 + part of this License. No use of any Covered Software is authorized 245 + under this License except under this disclaimer. 246 + 247 + 7. Limitation of Liability Under no circumstances and under no legal 248 + theory, whether tort (including negligence), contract, or otherwise, 249 + shall any Contributor, or anyone who distributes Covered Software as 250 + permitted above, be liable to You for any direct, indirect, special, 251 + incidental, or consequential damages of any character including, 252 + without limitation, damages for lost profits, loss of goodwill, work 253 + stoppage, computer failure or malfunction, or any and all other 254 + commercial damages or losses, even if such party shall have been 255 + informed of the possibility of such damages. This limitation of 256 + liability shall not apply to liability for death or personal injury 257 + resulting from such party’s negligence to the extent applicable law 258 + prohibits such limitation. Some jurisdictions do not allow the 259 + exclusion or limitation of incidental or consequential damages, so 260 + this exclusion and limitation may not apply to You. 261 + 262 + 8. Litigation Any litigation relating to this License may be brought 263 + only in the courts of a jurisdiction where the defendant maintains its 264 + principal place of business and such litigation shall be governed by 265 + laws of that jurisdiction, without reference to its conflict-of-law 266 + provisions. Nothing in this Section shall prevent a party’s ability to 267 + bring cross-claims or counter-claims. 268 + 269 + 9. Miscellaneous This License represents the complete agreement 270 + concerning the subject matter hereof. If any provision of this License 271 + is held to be unenforceable, such provision shall be reformed only to 272 + the extent necessary to make it enforceable. Any law or regulation 273 + which provides that the language of a contract shall be construed 274 + against the drafter shall not be used to construe this License against 275 + a Contributor. 276 + 277 + 10. Versions of the License 278 + 279 + 10.1. New Versions Mozilla Foundation is the license steward. Except 280 + as provided in Section 10.3, no one other than the license steward 281 + has the right to modify or publish new versions of this License. 282 + Each version will be given a distinguishing version number. 283 + 284 + 10.2. Effect of New Versions You may distribute the Covered Software 285 + under the terms of the version of the License under which You 286 + originally received the Covered Software, or under the terms of any 287 + subsequent version published by the license steward. 288 + 289 + 10.3. Modified Versions If you create software not governed by this 290 + License, and you want to create a new license for such software, you 291 + may create and use a modified version of this License if you rename 292 + the license and remove any references to the name of the license 293 + steward (except to note that such modified license differs from this 294 + License). 295 + 296 + 10.4. Distributing Source Code Form that is Incompatible With 297 + Secondary Licenses If You choose to distribute Source Code Form that 298 + is Incompatible With Secondary Licenses under the terms of this 299 + version of the License, the notice described in Exhibit B of this 300 + License must be attached. 301 + 302 + Exhibit A - Source Code Form License Notice 303 + 304 + This Source Code Form is subject to the terms of the Mozilla Public 305 + License, v. 2.0. If a copy of the MPL was not distributed with this 306 + file, You can obtain one at http://mozilla.org/MPL/2.0/. 307 + 308 + If it is not possible or desirable to put the notice in a particular 309 + file, then You may include the notice in a location (such as a 310 + LICENSE file in a relevant directory) where a recipient would be 311 + likely to look for such a notice. 312 + 313 + You may add additional accurate notices of copyright ownership. 314 + 315 + Exhibit B - “Incompatible With Secondary Licenses” Notice 316 + 317 + This Source Code Form is “Incompatible With Secondary Licenses”, as 318 + defined by the Mozilla Public License, v. 2.0. 319 +
+39
licences/Unicode-3.0.txt
··· 1 + UNICODE LICENSE V3 2 + 3 + COPYRIGHT AND PERMISSION NOTICE 4 + 5 + Copyright © 1991-2026 Unicode, Inc. 6 + 7 + NOTICE TO USER: Carefully read the following legal agreement. BY 8 + DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR 9 + SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE 10 + TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT 11 + DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. 12 + 13 + Permission is hereby granted, free of charge, to any person obtaining a 14 + copy of data files and any associated documentation (the "Data Files") or 15 + software and any associated documentation (the "Software") to deal in the 16 + Data Files or Software without restriction, including without limitation 17 + the rights to use, copy, modify, merge, publish, distribute, and/or sell 18 + copies of the Data Files or Software, and to permit persons to whom the 19 + Data Files or Software are furnished to do so, provided that either (a) 20 + this copyright and permission notice appear with all copies of the Data 21 + Files or Software, or (b) this copyright and permission notice appear in 22 + associated Documentation. 23 + 24 + THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY 25 + KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 26 + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF 27 + THIRD PARTY RIGHTS. 28 + 29 + IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE 30 + BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, 31 + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, 32 + WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, 33 + ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA 34 + FILES OR SOFTWARE. 35 + 36 + Except as contained in this notice, the name of a copyright holder shall 37 + not be used in advertising or otherwise to promote the sale, use or other 38 + dealings in these Data Files or Software without prior written 39 + authorization of the copyright holder.
+17
licences/Zlib.txt
··· 1 + Copyright (c) <year> <copyright holders> 2 + 3 + This software is provided 'as-is', without any express or implied 4 + warranty. In no event will the authors be held liable for any damages 5 + arising from the use of this software. 6 + 7 + Permission is granted to anyone to use this software for any purpose, 8 + including commercial applications, and to alter it and redistribute it 9 + freely, subject to the following restrictions: 10 + 11 + 1. The origin of this software must not be misrepresented; you must not 12 + claim that you wrote the original software. If you use this software 13 + in a product, an acknowledgment in the product documentation would be 14 + appreciated but is not required. 15 + 2. Altered source versions must be plainly marked as such, and must not be 16 + misrepresented as being the original software. 17 + 3. This notice may not be removed or altered from any source distribution.