python: add msgspec

This commit is contained in:
vanyauhalin
2023-08-22 12:43:16 +04:00
parent 292640aa95
commit a676da0a61
4 changed files with 36 additions and 0 deletions

View File

@ -36,6 +36,10 @@ jQuery.UI - jQuery UI is an open source library of interface components —
License: MIT License: MIT
License File: jQuery.UI.license License File: jQuery.UI.license
msgspec - A fast serialization and validation library, with builtin support for JSON, MessagePack, YAML, and TOML. (https://github.com/jcrist/msgspec/blob/0.18.1/LICENSE)
License: BSD 3-Clause
License File: msgspec.license
mypy - Optional static typing for Python. (https://github.com/python/mypy/blob/master/LICENSE) mypy - Optional static typing for Python. (https://github.com/python/mypy/blob/master/LICENSE)
License: MIT License: MIT
License File: mypy.license License File: mypy.license

View File

@ -36,6 +36,10 @@ jQuery.UI - jQuery UI is an open source library of interface components —
License: MIT License: MIT
License File: jQuery.UI.license License File: jQuery.UI.license
msgspec - A fast serialization and validation library, with builtin support for JSON, MessagePack, YAML, and TOML. (https://github.com/jcrist/msgspec/blob/0.18.1/LICENSE)
License: BSD 3-Clause
License File: msgspec.license
mypy - Optional static typing for Python. (https://github.com/python/mypy/blob/master/LICENSE) mypy - Optional static typing for Python. (https://github.com/python/mypy/blob/master/LICENSE)
License: MIT License: MIT
License File: mypy.license License File: mypy.license

View File

@ -0,0 +1,27 @@
Copyright (c) 2021, Jim Crist-Harif
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
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.
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.
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 OWNER 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.

View File

@ -10,6 +10,7 @@ requires-python = ">=3.11"
dependencies = [ dependencies = [
"django>=3.1.3", "django>=3.1.3",
"django-stubs>=4.2.3", "django-stubs>=4.2.3",
"msgspec>=0.18.1",
"pyjwt>=2.6.0", "pyjwt>=2.6.0",
"python-magic>=0.4.27", "python-magic>=0.4.27",
"requests>=2.25.0" "requests>=2.25.0"