|
| 1 | +# ACKNOWLEDGEMENTS |
| 2 | + |
| 3 | +This library uses pieces from the following other projects: |
| 4 | + |
| 5 | +## xxhash |
| 6 | +The internal xxHash64 class is a port of https://github.com/stbrumme/xxhash. |
| 7 | +That open-source project was released under the following license: |
| 8 | + |
| 9 | +MIT License |
| 10 | + |
| 11 | +Copyright (c) 2018 Stephan Brumme |
| 12 | + |
| 13 | +Permission is hereby granted, free of charge, to any person obtaining a copy |
| 14 | +of this software and associated documentation files (the "Software"), |
| 15 | +to deal in the Software without restriction, including without limitation |
| 16 | +the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 17 | +and/or sell copies of the Software, and to permit persons to whom the Software |
| 18 | +is furnished to do so, subject to the following conditions: |
| 19 | + |
| 20 | +The above copyright notice and this permission notice shall be included |
| 21 | +in all copies or substantial portions of the Software. |
| 22 | + |
| 23 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
| 24 | +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A |
| 25 | +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
| 26 | +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 27 | +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE |
| 28 | +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 29 | + |
| 30 | +## .NET Core |
| 31 | +Some small helper methods were copied from the shared `System.Private.CoreLib` |
| 32 | +parts of https://github.com/dotnet/coreclr, which has the following license: |
| 33 | + |
| 34 | +The MIT License (MIT) |
| 35 | + |
| 36 | +Copyright (c) .NET Foundation and Contributors |
| 37 | + |
| 38 | +All rights reserved. |
| 39 | + |
| 40 | +Permission is hereby granted, free of charge, to any person obtaining a copy |
| 41 | +of this software and associated documentation files (the "Software"), to deal |
| 42 | +in the Software without restriction, including without limitation the rights |
| 43 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 44 | +copies of the Software, and to permit persons to whom the Software is |
| 45 | +furnished to do so, subject to the following conditions: |
| 46 | + |
| 47 | +The above copyright notice and this permission notice shall be included in all |
| 48 | +copies or substantial portions of the Software. |
| 49 | + |
| 50 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 51 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 52 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 53 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 54 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 55 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 56 | +SOFTWARE. |
0 commit comments