mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-04-07 14:06:11 +08:00
python: add msgspec
This commit is contained in:
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
27
web/documentserver-example/python/licenses/msgspec.license
Normal file
27
web/documentserver-example/python/licenses/msgspec.license
Normal 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.
|
||||||
@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user