@signalapp/libsignal-client 0.57.1 → 0.58.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Errors.d.ts +1 -0
- package/dist/Errors.js +3 -0
- package/dist/acknowledgments.md +303 -155
- package/package.json +3 -3
- package/prebuilds/darwin-arm64/@signalapp+libsignal-client.node +0 -0
- package/prebuilds/darwin-x64/@signalapp+libsignal-client.node +0 -0
- package/prebuilds/linux-arm64/@signalapp+libsignal-client.node +0 -0
- package/prebuilds/linux-x64/@signalapp+libsignal-client.node +0 -0
- package/prebuilds/win32-arm64/@signalapp+libsignal-client.node +0 -0
- package/prebuilds/win32-x64/@signalapp+libsignal-client.node +0 -0
package/dist/Errors.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export declare class LibSignalErrorBase extends Error {
|
|
|
45
45
|
readonly _addr?: string | Native.ProtocolAddress;
|
|
46
46
|
constructor(message: string, name: keyof typeof ErrorCode | undefined, operation: string, extraProps?: Record<string, unknown>);
|
|
47
47
|
get addr(): ProtocolAddress | string;
|
|
48
|
+
toString(): string;
|
|
48
49
|
}
|
|
49
50
|
export type LibSignalErrorCommon = Omit<LibSignalErrorBase, 'addr'>;
|
|
50
51
|
export type GenericError = LibSignalErrorCommon & {
|
package/dist/Errors.js
CHANGED
|
@@ -78,6 +78,9 @@ class LibSignalErrorBase extends Error {
|
|
|
78
78
|
throw new TypeError(`cannot get address from this error (${this})`);
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
|
+
toString() {
|
|
82
|
+
return `${this.name} - ${this.operation}: ${this.message}`;
|
|
83
|
+
}
|
|
81
84
|
}
|
|
82
85
|
exports.LibSignalErrorBase = LibSignalErrorBase;
|
|
83
86
|
//# sourceMappingURL=Errors.js.map
|
package/dist/acknowledgments.md
CHANGED
|
@@ -669,7 +669,7 @@ For more information on this, and how to apply and follow the GNU AGPL, see
|
|
|
669
669
|
|
|
670
670
|
```
|
|
671
671
|
|
|
672
|
-
## attest 0.1.0, libsignal-ffi 0.
|
|
672
|
+
## attest 0.1.0, libsignal-ffi 0.58.0, libsignal-jni 0.58.0, libsignal-jni-testing 0.58.0, libsignal-node 0.58.0, signal-neon-futures 0.1.0, signal-neon-futures-tests 0.1.0, libsignal-bridge 0.1.0, libsignal-bridge-macros 0.1.0, libsignal-bridge-testing 0.1.0, libsignal-bridge-types 0.1.0, libsignal-core 0.1.0, signal-crypto 0.1.0, device-transfer 0.1.0, libsignal-keytrans 0.0.1, signal-media 0.1.0, libsignal-message-backup 0.1.0, libsignal-message-backup-macros 0.1.0, libsignal-net 0.1.0, signal-pin 0.1.0, poksho 0.7.0, libsignal-protocol 0.1.0, libsignal-svr3 0.1.0, usernames 0.1.0, zkcredential 0.1.0, zkgroup 0.9.0
|
|
673
673
|
|
|
674
674
|
```
|
|
675
675
|
GNU AFFERO GENERAL PUBLIC LICENSE
|
|
@@ -1533,6 +1533,201 @@ You should also get your employer (if you work as a programmer) or school, if an
|
|
|
1533
1533
|
|
|
1534
1534
|
```
|
|
1535
1535
|
|
|
1536
|
+
## libcrux-intrinsics 0.0.2-alpha.3, libcrux-ml-kem 0.0.2-alpha.3, libcrux-platform 0.0.2-pre.2, libcrux-sha3 0.0.2-alpha.3
|
|
1537
|
+
|
|
1538
|
+
```
|
|
1539
|
+
Apache License
|
|
1540
|
+
Version 2.0, January 2004
|
|
1541
|
+
http://www.apache.org/licenses/
|
|
1542
|
+
|
|
1543
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
1544
|
+
|
|
1545
|
+
1. Definitions.
|
|
1546
|
+
|
|
1547
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
1548
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
1549
|
+
|
|
1550
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
1551
|
+
the copyright owner that is granting the License.
|
|
1552
|
+
|
|
1553
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
1554
|
+
other entities that control, are controlled by, or are under common
|
|
1555
|
+
control with that entity. For the purposes of this definition,
|
|
1556
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
1557
|
+
direction or management of such entity, whether by contract or
|
|
1558
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
1559
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
1560
|
+
|
|
1561
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
1562
|
+
exercising permissions granted by this License.
|
|
1563
|
+
|
|
1564
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
1565
|
+
including but not limited to software source code, documentation
|
|
1566
|
+
source, and configuration files.
|
|
1567
|
+
|
|
1568
|
+
"Object" form shall mean any form resulting from mechanical
|
|
1569
|
+
transformation or translation of a Source form, including but
|
|
1570
|
+
not limited to compiled object code, generated documentation,
|
|
1571
|
+
and conversions to other media types.
|
|
1572
|
+
|
|
1573
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
1574
|
+
Object form, made available under the License, as indicated by a
|
|
1575
|
+
copyright notice that is included in or attached to the work
|
|
1576
|
+
(an example is provided in the Appendix below).
|
|
1577
|
+
|
|
1578
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
1579
|
+
form, that is based on (or derived from) the Work and for which the
|
|
1580
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
1581
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
1582
|
+
of this License, Derivative Works shall not include works that remain
|
|
1583
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
1584
|
+
the Work and Derivative Works thereof.
|
|
1585
|
+
|
|
1586
|
+
"Contribution" shall mean any work of authorship, including
|
|
1587
|
+
the original version of the Work and any modifications or additions
|
|
1588
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
1589
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
1590
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
1591
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
1592
|
+
means any form of electronic, verbal, or written communication sent
|
|
1593
|
+
to the Licensor or its representatives, including but not limited to
|
|
1594
|
+
communication on electronic mailing lists, source code control systems,
|
|
1595
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
1596
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
1597
|
+
excluding communication that is conspicuously marked or otherwise
|
|
1598
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
1599
|
+
|
|
1600
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
1601
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
1602
|
+
subsequently incorporated within the Work.
|
|
1603
|
+
|
|
1604
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
1605
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
1606
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
1607
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
1608
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
1609
|
+
Work and such Derivative Works in Source or Object form.
|
|
1610
|
+
|
|
1611
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
1612
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
1613
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
1614
|
+
(except as stated in this section) patent license to make, have made,
|
|
1615
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
1616
|
+
where such license applies only to those patent claims licensable
|
|
1617
|
+
by such Contributor that are necessarily infringed by their
|
|
1618
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
1619
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
1620
|
+
institute patent litigation against any entity (including a
|
|
1621
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
1622
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
1623
|
+
or contributory patent infringement, then any patent licenses
|
|
1624
|
+
granted to You under this License for that Work shall terminate
|
|
1625
|
+
as of the date such litigation is filed.
|
|
1626
|
+
|
|
1627
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
1628
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
1629
|
+
modifications, and in Source or Object form, provided that You
|
|
1630
|
+
meet the following conditions:
|
|
1631
|
+
|
|
1632
|
+
(a) You must give any other recipients of the Work or
|
|
1633
|
+
Derivative Works a copy of this License; and
|
|
1634
|
+
|
|
1635
|
+
(b) You must cause any modified files to carry prominent notices
|
|
1636
|
+
stating that You changed the files; and
|
|
1637
|
+
|
|
1638
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
1639
|
+
that You distribute, all copyright, patent, trademark, and
|
|
1640
|
+
attribution notices from the Source form of the Work,
|
|
1641
|
+
excluding those notices that do not pertain to any part of
|
|
1642
|
+
the Derivative Works; and
|
|
1643
|
+
|
|
1644
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
1645
|
+
distribution, then any Derivative Works that You distribute must
|
|
1646
|
+
include a readable copy of the attribution notices contained
|
|
1647
|
+
within such NOTICE file, excluding those notices that do not
|
|
1648
|
+
pertain to any part of the Derivative Works, in at least one
|
|
1649
|
+
of the following places: within a NOTICE text file distributed
|
|
1650
|
+
as part of the Derivative Works; within the Source form or
|
|
1651
|
+
documentation, if provided along with the Derivative Works; or,
|
|
1652
|
+
within a display generated by the Derivative Works, if and
|
|
1653
|
+
wherever such third-party notices normally appear. The contents
|
|
1654
|
+
of the NOTICE file are for informational purposes only and
|
|
1655
|
+
do not modify the License. You may add Your own attribution
|
|
1656
|
+
notices within Derivative Works that You distribute, alongside
|
|
1657
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
1658
|
+
that such additional attribution notices cannot be construed
|
|
1659
|
+
as modifying the License.
|
|
1660
|
+
|
|
1661
|
+
You may add Your own copyright statement to Your modifications and
|
|
1662
|
+
may provide additional or different license terms and conditions
|
|
1663
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
1664
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
1665
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
1666
|
+
the conditions stated in this License.
|
|
1667
|
+
|
|
1668
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
1669
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
1670
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
1671
|
+
this License, without any additional terms or conditions.
|
|
1672
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
1673
|
+
the terms of any separate license agreement you may have executed
|
|
1674
|
+
with Licensor regarding such Contributions.
|
|
1675
|
+
|
|
1676
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
1677
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
1678
|
+
except as required for reasonable and customary use in describing the
|
|
1679
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
1680
|
+
|
|
1681
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
1682
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
1683
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
1684
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
1685
|
+
implied, including, without limitation, any warranties or conditions
|
|
1686
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
1687
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
1688
|
+
appropriateness of using or redistributing the Work and assume any
|
|
1689
|
+
risks associated with Your exercise of permissions under this License.
|
|
1690
|
+
|
|
1691
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
1692
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
1693
|
+
unless required by applicable law (such as deliberate and grossly
|
|
1694
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
1695
|
+
liable to You for damages, including any direct, indirect, special,
|
|
1696
|
+
incidental, or consequential damages of any character arising as a
|
|
1697
|
+
result of this License or out of the use or inability to use the
|
|
1698
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
1699
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
1700
|
+
other commercial damages or losses), even if such Contributor
|
|
1701
|
+
has been advised of the possibility of such damages.
|
|
1702
|
+
|
|
1703
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
1704
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
1705
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
1706
|
+
or other liability obligations and/or rights consistent with this
|
|
1707
|
+
License. However, in accepting such obligations, You may act only
|
|
1708
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
1709
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
1710
|
+
defend, and hold each Contributor harmless for any liability
|
|
1711
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
1712
|
+
of your accepting any such warranty or additional liability.
|
|
1713
|
+
|
|
1714
|
+
END OF TERMS AND CONDITIONS
|
|
1715
|
+
|
|
1716
|
+
Copyright 2023 Cryspen Sarl
|
|
1717
|
+
|
|
1718
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
1719
|
+
you may not use this file except in compliance with the License.
|
|
1720
|
+
You may obtain a copy of the License at
|
|
1721
|
+
|
|
1722
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
1723
|
+
|
|
1724
|
+
Unless required by applicable law or agreed to in writing, software
|
|
1725
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
1726
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1727
|
+
See the License for the specific language governing permissions and
|
|
1728
|
+
limitations under the License.
|
|
1729
|
+
```
|
|
1730
|
+
|
|
1536
1731
|
## ryu 1.0.18
|
|
1537
1732
|
|
|
1538
1733
|
```
|
|
@@ -1715,7 +1910,7 @@ END OF TERMS AND CONDITIONS
|
|
|
1715
1910
|
|
|
1716
1911
|
```
|
|
1717
1912
|
|
|
1718
|
-
## debugid 0.8.0, prost-build 0.13.
|
|
1913
|
+
## debugid 0.8.0, prost-build 0.13.2, prost-derive 0.13.2, prost-types 0.13.2, prost 0.13.2
|
|
1719
1914
|
|
|
1720
1915
|
```
|
|
1721
1916
|
Apache License
|
|
@@ -1922,85 +2117,6 @@ limitations under the License.
|
|
|
1922
2117
|
|
|
1923
2118
|
```
|
|
1924
2119
|
|
|
1925
|
-
## libcrux-intrinsics 0.0.2-alpha.3, libcrux-ml-kem 0.0.2-alpha.3, libcrux-platform 0.0.2-pre.2, libcrux-sha3 0.0.2-alpha.3
|
|
1926
|
-
|
|
1927
|
-
```
|
|
1928
|
-
Apache License
|
|
1929
|
-
Version 2.0, January 2004
|
|
1930
|
-
http://www.apache.org/licenses/
|
|
1931
|
-
|
|
1932
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
1933
|
-
|
|
1934
|
-
1. Definitions.
|
|
1935
|
-
|
|
1936
|
-
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
1937
|
-
|
|
1938
|
-
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
1939
|
-
|
|
1940
|
-
"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.
|
|
1941
|
-
|
|
1942
|
-
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
1943
|
-
|
|
1944
|
-
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
1945
|
-
|
|
1946
|
-
"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.
|
|
1947
|
-
|
|
1948
|
-
"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).
|
|
1949
|
-
|
|
1950
|
-
"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.
|
|
1951
|
-
|
|
1952
|
-
"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."
|
|
1953
|
-
|
|
1954
|
-
"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.
|
|
1955
|
-
|
|
1956
|
-
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.
|
|
1957
|
-
|
|
1958
|
-
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.
|
|
1959
|
-
|
|
1960
|
-
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:
|
|
1961
|
-
|
|
1962
|
-
(a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
1963
|
-
|
|
1964
|
-
(b) You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
1965
|
-
|
|
1966
|
-
(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
|
|
1967
|
-
|
|
1968
|
-
(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.
|
|
1969
|
-
|
|
1970
|
-
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.
|
|
1971
|
-
|
|
1972
|
-
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.
|
|
1973
|
-
|
|
1974
|
-
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.
|
|
1975
|
-
|
|
1976
|
-
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.
|
|
1977
|
-
|
|
1978
|
-
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.
|
|
1979
|
-
|
|
1980
|
-
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.
|
|
1981
|
-
|
|
1982
|
-
END OF TERMS AND CONDITIONS
|
|
1983
|
-
|
|
1984
|
-
APPENDIX: How to apply the Apache License to your work.
|
|
1985
|
-
|
|
1986
|
-
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.
|
|
1987
|
-
|
|
1988
|
-
Copyright [yyyy] [name of copyright owner]
|
|
1989
|
-
|
|
1990
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
1991
|
-
you may not use this file except in compliance with the License.
|
|
1992
|
-
You may obtain a copy of the License at
|
|
1993
|
-
|
|
1994
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
1995
|
-
|
|
1996
|
-
Unless required by applicable law or agreed to in writing, software
|
|
1997
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
1998
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1999
|
-
See the License for the specific language governing permissions and
|
|
2000
|
-
limitations under the License.
|
|
2001
|
-
|
|
2002
|
-
```
|
|
2003
|
-
|
|
2004
2120
|
## boring 4.9.0
|
|
2005
2121
|
|
|
2006
2122
|
```
|
|
@@ -2325,7 +2441,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2325
2441
|
|
|
2326
2442
|
```
|
|
2327
2443
|
|
|
2328
|
-
## dunce 1.0.
|
|
2444
|
+
## dunce 1.0.5
|
|
2329
2445
|
|
|
2330
2446
|
```
|
|
2331
2447
|
Creative Commons Legal Code
|
|
@@ -2544,7 +2660,7 @@ THIS SOFTWARE.
|
|
|
2544
2660
|
|
|
2545
2661
|
```
|
|
2546
2662
|
|
|
2547
|
-
## rustls-webpki 0.102.
|
|
2663
|
+
## rustls-webpki 0.102.8
|
|
2548
2664
|
|
|
2549
2665
|
```
|
|
2550
2666
|
Except as otherwise noted, this project is licensed under the following
|
|
@@ -2569,7 +2685,7 @@ third-party/chromium/LICENSE.
|
|
|
2569
2685
|
|
|
2570
2686
|
```
|
|
2571
2687
|
|
|
2572
|
-
## windows-core 0.52.0, windows-sys 0.45.0, windows-sys 0.52.0, windows-targets 0.42.2, windows-targets 0.52.6, windows_aarch64_msvc 0.42.2, windows_aarch64_msvc 0.52.6, windows_x86_64_gnu 0.52.6, windows_x86_64_msvc 0.42.2, windows_x86_64_msvc 0.52.6
|
|
2688
|
+
## windows-core 0.52.0, windows-sys 0.45.0, windows-sys 0.52.0, windows-sys 0.59.0, windows-targets 0.42.2, windows-targets 0.52.6, windows_aarch64_msvc 0.42.2, windows_aarch64_msvc 0.52.6, windows_x86_64_gnu 0.52.6, windows_x86_64_msvc 0.42.2, windows_x86_64_msvc 0.52.6
|
|
2573
2689
|
|
|
2574
2690
|
```
|
|
2575
2691
|
MIT License
|
|
@@ -2691,7 +2807,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
2691
2807
|
|
|
2692
2808
|
```
|
|
2693
2809
|
|
|
2694
|
-
## core-foundation-sys 0.8.
|
|
2810
|
+
## core-foundation-sys 0.8.7, core-foundation 0.9.4
|
|
2695
2811
|
|
|
2696
2812
|
```
|
|
2697
2813
|
Copyright (c) 2012-2013 Mozilla Foundation
|
|
@@ -2810,7 +2926,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
2810
2926
|
|
|
2811
2927
|
```
|
|
2812
2928
|
|
|
2813
|
-
## backtrace 0.3.
|
|
2929
|
+
## backtrace 0.3.74, cc 1.1.18, cfg-if 1.0.0, cmake 0.1.48, flate2 1.0.33, jobserver 0.1.32, openssl-probe 0.1.5, rustc-demangle 0.1.24, socket2 0.5.7
|
|
2814
2930
|
|
|
2815
2931
|
```
|
|
2816
2932
|
Copyright (c) 2014 Alex Crichton
|
|
@@ -2873,7 +2989,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
2873
2989
|
|
|
2874
2990
|
```
|
|
2875
2991
|
|
|
2876
|
-
## mio 1.0.
|
|
2992
|
+
## mio 1.0.2
|
|
2877
2993
|
|
|
2878
2994
|
```
|
|
2879
2995
|
Copyright (c) 2014 Carl Lerche and other MIO contributors
|
|
@@ -2961,7 +3077,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
2961
3077
|
|
|
2962
3078
|
```
|
|
2963
3079
|
|
|
2964
|
-
## bitflags 2.6.0, glob 0.3.1, log 0.4.22, num-bigint 0.4.6, num-derive 0.4.2, num-integer 0.1.46, num-traits 0.2.19, range-map 0.2.0, regex-automata 0.4.7, regex-syntax 0.8.4, regex 1.10.
|
|
3080
|
+
## bitflags 2.6.0, glob 0.3.1, log 0.4.22, num-bigint 0.4.6, num-derive 0.4.2, num-integer 0.1.46, num-traits 0.2.19, range-map 0.2.0, regex-automata 0.4.7, regex-syntax 0.8.4, regex 1.10.6
|
|
2965
3081
|
|
|
2966
3082
|
```
|
|
2967
3083
|
Copyright (c) 2014 The Rust Project Developers
|
|
@@ -3050,7 +3166,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
3050
3166
|
|
|
3051
3167
|
```
|
|
3052
3168
|
|
|
3053
|
-
## libc 0.2.
|
|
3169
|
+
## libc 0.2.158
|
|
3054
3170
|
|
|
3055
3171
|
```
|
|
3056
3172
|
Copyright (c) 2014-2020 The Rust Project Developers
|
|
@@ -3162,7 +3278,7 @@ THE SOFTWARE.
|
|
|
3162
3278
|
|
|
3163
3279
|
```
|
|
3164
3280
|
|
|
3165
|
-
## anstyle-wincon 3.0.
|
|
3281
|
+
## anstyle-wincon 3.0.4
|
|
3166
3282
|
|
|
3167
3283
|
```
|
|
3168
3284
|
Copyright (c) 2015 Josh Triplett, 2022 The rust-cli Developers
|
|
@@ -3187,7 +3303,7 @@ SOFTWARE.
|
|
|
3187
3303
|
|
|
3188
3304
|
```
|
|
3189
3305
|
|
|
3190
|
-
## tempfile 3.
|
|
3306
|
+
## tempfile 3.12.0
|
|
3191
3307
|
|
|
3192
3308
|
```
|
|
3193
3309
|
Copyright (c) 2015 Steven Allen
|
|
@@ -3218,7 +3334,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3218
3334
|
|
|
3219
3335
|
```
|
|
3220
3336
|
|
|
3221
|
-
## object 0.36.
|
|
3337
|
+
## object 0.36.4
|
|
3222
3338
|
|
|
3223
3339
|
```
|
|
3224
3340
|
Copyright (c) 2015 The Gimli Developers
|
|
@@ -3249,7 +3365,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3249
3365
|
|
|
3250
3366
|
```
|
|
3251
3367
|
|
|
3252
|
-
## gimli 0.
|
|
3368
|
+
## gimli 0.31.0, heck 0.5.0, peeking_take_while 0.1.2, unicode-bidi 0.3.15, unicode-normalization 0.1.23
|
|
3253
3369
|
|
|
3254
3370
|
```
|
|
3255
3371
|
Copyright (c) 2015 The Rust Project Developers
|
|
@@ -3355,7 +3471,7 @@ THE SOFTWARE.
|
|
|
3355
3471
|
|
|
3356
3472
|
```
|
|
3357
3473
|
|
|
3358
|
-
## schannel 0.1.
|
|
3474
|
+
## schannel 0.1.24
|
|
3359
3475
|
|
|
3360
3476
|
```
|
|
3361
3477
|
Copyright (c) 2015 steffengy
|
|
@@ -3628,7 +3744,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3628
3744
|
|
|
3629
3745
|
```
|
|
3630
3746
|
|
|
3631
|
-
## hashbrown 0.
|
|
3747
|
+
## hashbrown 0.14.5
|
|
3632
3748
|
|
|
3633
3749
|
```
|
|
3634
3750
|
Copyright (c) 2016 Amanieu d'Antras
|
|
@@ -3690,7 +3806,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3690
3806
|
|
|
3691
3807
|
```
|
|
3692
3808
|
|
|
3693
|
-
## anstyle-parse 0.2.
|
|
3809
|
+
## anstyle-parse 0.2.5
|
|
3694
3810
|
|
|
3695
3811
|
```
|
|
3696
3812
|
Copyright (c) 2016 Joe Wilm and individual contributors
|
|
@@ -3721,7 +3837,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3721
3837
|
|
|
3722
3838
|
```
|
|
3723
3839
|
|
|
3724
|
-
## rustls-native-certs 0.7.
|
|
3840
|
+
## rustls-native-certs 0.7.3, rustls-pemfile 2.1.3, rustls 0.23.13
|
|
3725
3841
|
|
|
3726
3842
|
```
|
|
3727
3843
|
Copyright (c) 2016 Joseph Birr-Pixton <jpixton@gmail.com>
|
|
@@ -3783,7 +3899,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3783
3899
|
|
|
3784
3900
|
```
|
|
3785
3901
|
|
|
3786
|
-
## rustc_version 0.4.
|
|
3902
|
+
## rustc_version 0.4.1
|
|
3787
3903
|
|
|
3788
3904
|
```
|
|
3789
3905
|
Copyright (c) 2016 The Rust Project Developers
|
|
@@ -3934,7 +4050,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3934
4050
|
|
|
3935
4051
|
```
|
|
3936
4052
|
|
|
3937
|
-
## indexmap
|
|
4053
|
+
## indexmap 2.5.0
|
|
3938
4054
|
|
|
3939
4055
|
```
|
|
3940
4056
|
Copyright (c) 2016--2017
|
|
@@ -3996,7 +4112,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3996
4112
|
|
|
3997
4113
|
```
|
|
3998
4114
|
|
|
3999
|
-
## addr2line 0.
|
|
4115
|
+
## addr2line 0.24.1
|
|
4000
4116
|
|
|
4001
4117
|
```
|
|
4002
4118
|
Copyright (c) 2016-2018 The gimli Developers
|
|
@@ -4285,7 +4401,7 @@ SOFTWARE.
|
|
|
4285
4401
|
|
|
4286
4402
|
```
|
|
4287
4403
|
|
|
4288
|
-
## h2 0.4.
|
|
4404
|
+
## h2 0.4.6
|
|
4289
4405
|
|
|
4290
4406
|
```
|
|
4291
4407
|
Copyright (c) 2017 h2 authors
|
|
@@ -4410,7 +4526,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
4410
4526
|
|
|
4411
4527
|
```
|
|
4412
4528
|
|
|
4413
|
-
## bytes 1.
|
|
4529
|
+
## bytes 1.7.1
|
|
4414
4530
|
|
|
4415
4531
|
```
|
|
4416
4532
|
Copyright (c) 2018 Carl Lerche
|
|
@@ -4837,7 +4953,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
4837
4953
|
|
|
4838
4954
|
```
|
|
4839
4955
|
|
|
4840
|
-
## protobuf-codegen 3.
|
|
4956
|
+
## protobuf-codegen 3.5.1, protobuf-json-mapping 3.5.1, protobuf-support 3.5.1, protobuf 3.5.1
|
|
4841
4957
|
|
|
4842
4958
|
```
|
|
4843
4959
|
Copyright (c) 2019 Stepan Koltsov
|
|
@@ -4859,9 +4975,72 @@ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
4859
4975
|
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
4860
4976
|
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|
4861
4977
|
OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4978
|
+
|
|
4862
4979
|
```
|
|
4863
4980
|
|
|
4864
|
-
##
|
|
4981
|
+
## protobuf-parse 3.5.1
|
|
4982
|
+
|
|
4983
|
+
```
|
|
4984
|
+
Copyright (c) 2019 Stepan Koltsov
|
|
4985
|
+
|
|
4986
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4987
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4988
|
+
in the Software without restriction, including without limitation the rights
|
|
4989
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4990
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4991
|
+
furnished to do so, subject to the following conditions:
|
|
4992
|
+
|
|
4993
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4994
|
+
copies or substantial portions of the Software.
|
|
4995
|
+
|
|
4996
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
4997
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
4998
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
4999
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
5000
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
5001
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|
5002
|
+
OR OTHER DEALINGS IN THE SOFTWARE.
|
|
5003
|
+
|
|
5004
|
+
-----
|
|
5005
|
+
|
|
5006
|
+
The following applies to src/proto/google/
|
|
5007
|
+
|
|
5008
|
+
Copyright 2008 Google Inc. All rights reserved.
|
|
5009
|
+
|
|
5010
|
+
Redistribution and use in source and binary forms, with or without
|
|
5011
|
+
modification, are permitted provided that the following conditions are
|
|
5012
|
+
met:
|
|
5013
|
+
|
|
5014
|
+
* Redistributions of source code must retain the above copyright
|
|
5015
|
+
notice, this list of conditions and the following disclaimer.
|
|
5016
|
+
* Redistributions in binary form must reproduce the above
|
|
5017
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
5018
|
+
in the documentation and/or other materials provided with the
|
|
5019
|
+
distribution.
|
|
5020
|
+
* Neither the name of Google Inc. nor the names of its
|
|
5021
|
+
contributors may be used to endorse or promote products derived from
|
|
5022
|
+
this software without specific prior written permission.
|
|
5023
|
+
|
|
5024
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
5025
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
5026
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
5027
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
5028
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
5029
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
5030
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
5031
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
5032
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
5033
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
5034
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
5035
|
+
|
|
5036
|
+
Code generated by the Protocol Buffer compiler is owned by the owner
|
|
5037
|
+
of the input file used when generating it. This code is not
|
|
5038
|
+
standalone and requires a support library to be linked with it. This
|
|
5039
|
+
support library is itself covered by the above license.
|
|
5040
|
+
|
|
5041
|
+
```
|
|
5042
|
+
|
|
5043
|
+
## ppv-lite86 0.2.20
|
|
4865
5044
|
|
|
4866
5045
|
```
|
|
4867
5046
|
Copyright (c) 2019 The CryptoCorrosion Contributors
|
|
@@ -5172,7 +5351,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
5172
5351
|
|
|
5173
5352
|
```
|
|
5174
5353
|
|
|
5175
|
-
## cpufeatures 0.2.
|
|
5354
|
+
## cpufeatures 0.2.14
|
|
5176
5355
|
|
|
5177
5356
|
```
|
|
5178
5357
|
Copyright (c) 2020 The RustCrypto Project Developers
|
|
@@ -5203,7 +5382,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
5203
5382
|
|
|
5204
5383
|
```
|
|
5205
5384
|
|
|
5206
|
-
## memmap2 0.9.
|
|
5385
|
+
## memmap2 0.9.5
|
|
5207
5386
|
|
|
5208
5387
|
```
|
|
5209
5388
|
Copyright (c) 2020 Yevhenii Reizner
|
|
@@ -5385,7 +5564,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
5385
5564
|
|
|
5386
5565
|
```
|
|
5387
5566
|
|
|
5388
|
-
## anstyle 1.0.
|
|
5567
|
+
## anstyle 1.0.8
|
|
5389
5568
|
|
|
5390
5569
|
```
|
|
5391
5570
|
Copyright (c) 2022 The rust-cli Developers
|
|
@@ -5435,7 +5614,7 @@ SOFTWARE.
|
|
|
5435
5614
|
|
|
5436
5615
|
```
|
|
5437
5616
|
|
|
5438
|
-
## rustls-pki-types 1.
|
|
5617
|
+
## rustls-pki-types 1.8.0
|
|
5439
5618
|
|
|
5440
5619
|
```
|
|
5441
5620
|
Copyright (c) 2023 Dirkjan Ochtman <dirkjan@ochtman.nl>
|
|
@@ -5516,7 +5695,7 @@ SOFTWARE.
|
|
|
5516
5695
|
|
|
5517
5696
|
```
|
|
5518
5697
|
|
|
5519
|
-
## hyper-util 0.1.
|
|
5698
|
+
## hyper-util 0.1.8
|
|
5520
5699
|
|
|
5521
5700
|
```
|
|
5522
5701
|
Copyright (c) 2023 Sean McArthur
|
|
@@ -5541,37 +5720,6 @@ THE SOFTWARE.
|
|
|
5541
5720
|
|
|
5542
5721
|
```
|
|
5543
5722
|
|
|
5544
|
-
## tokio-stream 0.1.15, tokio-util 0.7.11
|
|
5545
|
-
|
|
5546
|
-
```
|
|
5547
|
-
Copyright (c) 2023 Tokio Contributors
|
|
5548
|
-
|
|
5549
|
-
Permission is hereby granted, free of charge, to any
|
|
5550
|
-
person obtaining a copy of this software and associated
|
|
5551
|
-
documentation files (the "Software"), to deal in the
|
|
5552
|
-
Software without restriction, including without
|
|
5553
|
-
limitation the rights to use, copy, modify, merge,
|
|
5554
|
-
publish, distribute, sublicense, and/or sell copies of
|
|
5555
|
-
the Software, and to permit persons to whom the Software
|
|
5556
|
-
is furnished to do so, subject to the following
|
|
5557
|
-
conditions:
|
|
5558
|
-
|
|
5559
|
-
The above copyright notice and this permission notice
|
|
5560
|
-
shall be included in all copies or substantial portions
|
|
5561
|
-
of the Software.
|
|
5562
|
-
|
|
5563
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
5564
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
5565
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
5566
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
5567
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5568
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
5569
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
5570
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
5571
|
-
DEALINGS IN THE SOFTWARE.
|
|
5572
|
-
|
|
5573
|
-
```
|
|
5574
|
-
|
|
5575
5723
|
## time 0.3.36
|
|
5576
5724
|
|
|
5577
5725
|
```
|
|
@@ -5597,7 +5745,7 @@ SOFTWARE.
|
|
|
5597
5745
|
|
|
5598
5746
|
```
|
|
5599
5747
|
|
|
5600
|
-
## anstream 0.6.
|
|
5748
|
+
## anstream 0.6.15, anstyle-query 1.1.1, clap 4.5.17, colorchoice 1.0.2, env_filter 0.1.2, env_logger 0.11.5, is_terminal_polyfill 1.70.1, toml_datetime 0.6.8, toml_edit 0.22.20
|
|
5601
5749
|
|
|
5602
5750
|
```
|
|
5603
5751
|
Copyright (c) Individual contributors
|
|
@@ -5634,7 +5782,7 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
5634
5782
|
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.
|
|
5635
5783
|
```
|
|
5636
5784
|
|
|
5637
|
-
## arrayvec 0.7.
|
|
5785
|
+
## arrayvec 0.7.6
|
|
5638
5786
|
|
|
5639
5787
|
```
|
|
5640
5788
|
Copyright (c) Ulrik Sverdrup "bluss" 2015-2023
|
|
@@ -5760,7 +5908,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
5760
5908
|
|
|
5761
5909
|
```
|
|
5762
5910
|
|
|
5763
|
-
## breakpad-symbols 0.
|
|
5911
|
+
## breakpad-symbols 0.21.2, minidump-common 0.21.2, minidump-processor 0.21.2, minidump-unwind 0.21.2, minidump 0.21.2
|
|
5764
5912
|
|
|
5765
5913
|
```
|
|
5766
5914
|
MIT License
|
|
@@ -5841,7 +5989,7 @@ SOFTWARE.
|
|
|
5841
5989
|
|
|
5842
5990
|
```
|
|
5843
5991
|
|
|
5844
|
-
## miniz_oxide 0.
|
|
5992
|
+
## miniz_oxide 0.8.0
|
|
5845
5993
|
|
|
5846
5994
|
```
|
|
5847
5995
|
MIT License
|
|
@@ -6300,7 +6448,7 @@ SOFTWARE.
|
|
|
6300
6448
|
|
|
6301
6449
|
```
|
|
6302
6450
|
|
|
6303
|
-
## cachemap2 0.
|
|
6451
|
+
## cachemap2 0.3.0
|
|
6304
6452
|
|
|
6305
6453
|
```
|
|
6306
6454
|
MIT License
|
|
@@ -6327,7 +6475,7 @@ SOFTWARE.
|
|
|
6327
6475
|
|
|
6328
6476
|
```
|
|
6329
6477
|
|
|
6330
|
-
## rustls-platform-verifier-android 0.1.
|
|
6478
|
+
## rustls-platform-verifier-android 0.1.1, rustls-platform-verifier 0.3.4
|
|
6331
6479
|
|
|
6332
6480
|
```
|
|
6333
6481
|
MIT License
|
|
@@ -6369,7 +6517,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
6369
6517
|
|
|
6370
6518
|
```
|
|
6371
6519
|
|
|
6372
|
-
## tokio 1.
|
|
6520
|
+
## tokio-stream 0.1.16, tokio-util 0.7.12, tokio 1.40.0
|
|
6373
6521
|
|
|
6374
6522
|
```
|
|
6375
6523
|
MIT License
|
|
@@ -6480,7 +6628,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
6480
6628
|
|
|
6481
6629
|
```
|
|
6482
6630
|
|
|
6483
|
-
## curve25519-dalek-derive 0.1.1,
|
|
6631
|
+
## curve25519-dalek-derive 0.1.1, adler2 2.0.0, anyhow 1.0.88, async-trait 0.1.82, atomic-waker 1.1.2, displaydoc 0.2.5, dyn-clone 1.0.17, fastrand 2.1.1, home 0.5.9, itoa 1.0.11, linkme-impl 0.3.28, linkme 0.3.28, linux-raw-sys 0.4.14, minimal-lexical 0.2.1, num_enum 0.7.3, num_enum_derive 0.7.3, once_cell 1.19.0, paste 1.0.15, pin-project-lite 0.2.14, prettyplease 0.2.22, proc-macro-crate 3.2.0, proc-macro2 1.0.86, quote 1.0.37, rustc-hash 1.1.0, rustix 0.38.37, rustversion 1.0.17, semver 1.0.23, send_wrapper 0.6.0, serde 1.0.210, serde_derive 1.0.210, serde_json 1.0.128, syn-mid 0.6.0, syn 1.0.109, syn 2.0.77, thiserror-impl 1.0.63, thiserror 1.0.63, unicode-ident 1.0.13, utf-8 0.7.6
|
|
6484
6632
|
|
|
6485
6633
|
```
|
|
6486
6634
|
Permission is hereby granted, free of charge, to any
|
|
@@ -6509,7 +6657,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
6509
6657
|
|
|
6510
6658
|
```
|
|
6511
6659
|
|
|
6512
|
-
## winnow 0.
|
|
6660
|
+
## winnow 0.6.18
|
|
6513
6661
|
|
|
6514
6662
|
```
|
|
6515
6663
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
@@ -6649,7 +6797,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
6649
6797
|
THE SOFTWARE.
|
|
6650
6798
|
```
|
|
6651
6799
|
|
|
6652
|
-
## base64 0.
|
|
6800
|
+
## base64 0.22.1
|
|
6653
6801
|
|
|
6654
6802
|
```
|
|
6655
6803
|
The MIT License (MIT)
|
|
@@ -6703,7 +6851,7 @@ THE SOFTWARE.
|
|
|
6703
6851
|
|
|
6704
6852
|
```
|
|
6705
6853
|
|
|
6706
|
-
## strsim 0.10.0
|
|
6854
|
+
## strsim 0.10.0, strsim 0.11.1
|
|
6707
6855
|
|
|
6708
6856
|
```
|
|
6709
6857
|
The MIT License (MIT)
|
|
@@ -6841,7 +6989,7 @@ SOFTWARE.
|
|
|
6841
6989
|
|
|
6842
6990
|
```
|
|
6843
6991
|
|
|
6844
|
-
## clap_builder 4.
|
|
6992
|
+
## clap_builder 4.5.17, clap_derive 4.5.13, clap_lex 0.7.2
|
|
6845
6993
|
|
|
6846
6994
|
```
|
|
6847
6995
|
The MIT License (MIT)
|
|
@@ -6949,7 +7097,7 @@ SOFTWARE.
|
|
|
6949
7097
|
|
|
6950
7098
|
```
|
|
6951
7099
|
|
|
6952
|
-
## same-file 1.0.6, winapi-util 0.1.
|
|
7100
|
+
## same-file 1.0.6, winapi-util 0.1.9
|
|
6953
7101
|
|
|
6954
7102
|
```
|
|
6955
7103
|
The MIT License (MIT)
|
|
@@ -7124,7 +7272,7 @@ SOFTWARE.
|
|
|
7124
7272
|
|
|
7125
7273
|
```
|
|
7126
7274
|
|
|
7127
|
-
## version_check 0.9.
|
|
7275
|
+
## version_check 0.9.5
|
|
7128
7276
|
|
|
7129
7277
|
```
|
|
7130
7278
|
The MIT License (MIT)
|
|
@@ -7260,7 +7408,7 @@ SOFTWARE.
|
|
|
7260
7408
|
*/
|
|
7261
7409
|
```
|
|
7262
7410
|
|
|
7263
|
-
## unicode-ident 1.0.
|
|
7411
|
+
## unicode-ident 1.0.13
|
|
7264
7412
|
|
|
7265
7413
|
```
|
|
7266
7414
|
UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signalapp/libsignal-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.58.0",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"@types/sinon": "^17.0.3",
|
|
44
44
|
"@types/sinon-chai": "^3.2.12",
|
|
45
45
|
"@types/uuid": "^8.3.0",
|
|
46
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
47
|
-
"@typescript-eslint/parser": "^
|
|
46
|
+
"@typescript-eslint/eslint-plugin": "^6.18.1",
|
|
47
|
+
"@typescript-eslint/parser": "^6.18.1",
|
|
48
48
|
"chai": "^4.2.0",
|
|
49
49
|
"chai-as-promised": "^7.1.1",
|
|
50
50
|
"chance": "^1.1.11",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|