@signalapp/libsignal-client 0.57.0 → 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/Native.d.ts +4 -3
- package/dist/Address.js +1 -1
- package/dist/Errors.d.ts +1 -0
- package/dist/Errors.js +4 -1
- package/dist/MessageBackup.js +1 -1
- package/dist/SealedSenderMultiRecipientMessage.js +1 -1
- package/dist/acknowledgments.md +303 -76
- package/dist/index.js +4 -4
- package/dist/net.js +1 -1
- package/dist/zkgroup/NotarySignature.js +1 -1
- package/dist/zkgroup/groups/GroupIdentifier.js +1 -1
- package/dist/zkgroup/groups/GroupMasterKey.js +1 -1
- package/dist/zkgroup/profiles/ProfileKey.js +1 -1
- package/dist/zkgroup/profiles/ProfileKeyVersion.js +1 -1
- package/dist/zkgroup/receipts/ReceiptCredentialPresentation.js +1 -1
- package/dist/zkgroup/receipts/ReceiptCredentialRequestContext.js +1 -1
- package/dist/zkgroup/receipts/ReceiptSerial.js +1 -1
- package/package.json +6 -6
- 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/Native.d.ts
CHANGED
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
4
4
|
//
|
|
5
5
|
|
|
6
|
-
import { LibSignalError } from './ts/Errors';
|
|
7
|
-
|
|
8
6
|
// WARNING: this file was automatically generated
|
|
9
7
|
|
|
10
8
|
type Uuid = Buffer;
|
|
@@ -122,7 +120,10 @@ export abstract class ChatListener {
|
|
|
122
120
|
ack: ServerMessageAck
|
|
123
121
|
): void;
|
|
124
122
|
_queue_empty(): void;
|
|
125
|
-
_connection_interrupted(
|
|
123
|
+
_connection_interrupted(
|
|
124
|
+
// A LibSignalError or null, but not naming the type to avoid circular import dependencies.
|
|
125
|
+
reason: Error | null
|
|
126
|
+
): void;
|
|
126
127
|
}
|
|
127
128
|
|
|
128
129
|
export abstract class MakeChatListener extends ChatListener {}
|
package/dist/Address.js
CHANGED
|
@@ -11,7 +11,7 @@ var ServiceIdKind;
|
|
|
11
11
|
(function (ServiceIdKind) {
|
|
12
12
|
ServiceIdKind[ServiceIdKind["Aci"] = 0] = "Aci";
|
|
13
13
|
ServiceIdKind[ServiceIdKind["Pni"] = 1] = "Pni";
|
|
14
|
-
})(ServiceIdKind
|
|
14
|
+
})(ServiceIdKind || (exports.ServiceIdKind = ServiceIdKind = {}));
|
|
15
15
|
const SERVICE_ID_FIXED_WIDTH_BINARY_LEN = 17;
|
|
16
16
|
/**
|
|
17
17
|
* Typed representation of a Signal service ID, which can be one of various types.
|
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
|
@@ -45,7 +45,7 @@ var ErrorCode;
|
|
|
45
45
|
ErrorCode[ErrorCode["DeviceDelinked"] = 34] = "DeviceDelinked";
|
|
46
46
|
ErrorCode[ErrorCode["BackupValidation"] = 35] = "BackupValidation";
|
|
47
47
|
ErrorCode[ErrorCode["Cancelled"] = 36] = "Cancelled";
|
|
48
|
-
})(ErrorCode
|
|
48
|
+
})(ErrorCode || (exports.ErrorCode = ErrorCode = {}));
|
|
49
49
|
class LibSignalErrorBase extends Error {
|
|
50
50
|
constructor(message, name, operation, extraProps) {
|
|
51
51
|
super(message);
|
|
@@ -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/MessageBackup.js
CHANGED
|
@@ -49,7 +49,7 @@ var Purpose;
|
|
|
49
49
|
(function (Purpose) {
|
|
50
50
|
Purpose[Purpose["DeviceTransfer"] = 0] = "DeviceTransfer";
|
|
51
51
|
Purpose[Purpose["RemoteBackup"] = 1] = "RemoteBackup";
|
|
52
|
-
})(Purpose
|
|
52
|
+
})(Purpose || (exports.Purpose = Purpose = {}));
|
|
53
53
|
/**
|
|
54
54
|
* Validate a backup file
|
|
55
55
|
*
|
|
@@ -47,7 +47,7 @@ class SealedSenderMultiRecipientMessage {
|
|
|
47
47
|
messageForRecipient(recipient) {
|
|
48
48
|
const nativeRecipient = recipient;
|
|
49
49
|
return Buffer.concat([
|
|
50
|
-
Buffer.of(0x22),
|
|
50
|
+
Buffer.of(0x22), // The "original" Sealed Sender V2 version
|
|
51
51
|
this._buffer.subarray(nativeRecipient.rangeOffset, nativeRecipient.rangeOffset + nativeRecipient.rangeLen),
|
|
52
52
|
this._buffer.subarray(this._offsetOfSharedData),
|
|
53
53
|
]);
|
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
|
|
@@ -2246,7 +2441,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2246
2441
|
|
|
2247
2442
|
```
|
|
2248
2443
|
|
|
2249
|
-
## dunce 1.0.
|
|
2444
|
+
## dunce 1.0.5
|
|
2250
2445
|
|
|
2251
2446
|
```
|
|
2252
2447
|
Creative Commons Legal Code
|
|
@@ -2465,7 +2660,7 @@ THIS SOFTWARE.
|
|
|
2465
2660
|
|
|
2466
2661
|
```
|
|
2467
2662
|
|
|
2468
|
-
## rustls-webpki 0.102.
|
|
2663
|
+
## rustls-webpki 0.102.8
|
|
2469
2664
|
|
|
2470
2665
|
```
|
|
2471
2666
|
Except as otherwise noted, this project is licensed under the following
|
|
@@ -2490,7 +2685,7 @@ third-party/chromium/LICENSE.
|
|
|
2490
2685
|
|
|
2491
2686
|
```
|
|
2492
2687
|
|
|
2493
|
-
## 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
|
|
2494
2689
|
|
|
2495
2690
|
```
|
|
2496
2691
|
MIT License
|
|
@@ -2612,7 +2807,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
2612
2807
|
|
|
2613
2808
|
```
|
|
2614
2809
|
|
|
2615
|
-
## core-foundation-sys 0.8.
|
|
2810
|
+
## core-foundation-sys 0.8.7, core-foundation 0.9.4
|
|
2616
2811
|
|
|
2617
2812
|
```
|
|
2618
2813
|
Copyright (c) 2012-2013 Mozilla Foundation
|
|
@@ -2731,7 +2926,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
2731
2926
|
|
|
2732
2927
|
```
|
|
2733
2928
|
|
|
2734
|
-
## 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
|
|
2735
2930
|
|
|
2736
2931
|
```
|
|
2737
2932
|
Copyright (c) 2014 Alex Crichton
|
|
@@ -2794,7 +2989,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
2794
2989
|
|
|
2795
2990
|
```
|
|
2796
2991
|
|
|
2797
|
-
## mio 1.0.
|
|
2992
|
+
## mio 1.0.2
|
|
2798
2993
|
|
|
2799
2994
|
```
|
|
2800
2995
|
Copyright (c) 2014 Carl Lerche and other MIO contributors
|
|
@@ -2882,7 +3077,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
2882
3077
|
|
|
2883
3078
|
```
|
|
2884
3079
|
|
|
2885
|
-
## 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
|
|
2886
3081
|
|
|
2887
3082
|
```
|
|
2888
3083
|
Copyright (c) 2014 The Rust Project Developers
|
|
@@ -2971,7 +3166,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
2971
3166
|
|
|
2972
3167
|
```
|
|
2973
3168
|
|
|
2974
|
-
## libc 0.2.
|
|
3169
|
+
## libc 0.2.158
|
|
2975
3170
|
|
|
2976
3171
|
```
|
|
2977
3172
|
Copyright (c) 2014-2020 The Rust Project Developers
|
|
@@ -3083,7 +3278,7 @@ THE SOFTWARE.
|
|
|
3083
3278
|
|
|
3084
3279
|
```
|
|
3085
3280
|
|
|
3086
|
-
## anstyle-wincon 3.0.
|
|
3281
|
+
## anstyle-wincon 3.0.4
|
|
3087
3282
|
|
|
3088
3283
|
```
|
|
3089
3284
|
Copyright (c) 2015 Josh Triplett, 2022 The rust-cli Developers
|
|
@@ -3108,7 +3303,7 @@ SOFTWARE.
|
|
|
3108
3303
|
|
|
3109
3304
|
```
|
|
3110
3305
|
|
|
3111
|
-
## tempfile 3.
|
|
3306
|
+
## tempfile 3.12.0
|
|
3112
3307
|
|
|
3113
3308
|
```
|
|
3114
3309
|
Copyright (c) 2015 Steven Allen
|
|
@@ -3139,7 +3334,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3139
3334
|
|
|
3140
3335
|
```
|
|
3141
3336
|
|
|
3142
|
-
## object 0.36.
|
|
3337
|
+
## object 0.36.4
|
|
3143
3338
|
|
|
3144
3339
|
```
|
|
3145
3340
|
Copyright (c) 2015 The Gimli Developers
|
|
@@ -3170,7 +3365,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3170
3365
|
|
|
3171
3366
|
```
|
|
3172
3367
|
|
|
3173
|
-
## 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
|
|
3174
3369
|
|
|
3175
3370
|
```
|
|
3176
3371
|
Copyright (c) 2015 The Rust Project Developers
|
|
@@ -3276,7 +3471,7 @@ THE SOFTWARE.
|
|
|
3276
3471
|
|
|
3277
3472
|
```
|
|
3278
3473
|
|
|
3279
|
-
## schannel 0.1.
|
|
3474
|
+
## schannel 0.1.24
|
|
3280
3475
|
|
|
3281
3476
|
```
|
|
3282
3477
|
Copyright (c) 2015 steffengy
|
|
@@ -3549,7 +3744,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3549
3744
|
|
|
3550
3745
|
```
|
|
3551
3746
|
|
|
3552
|
-
## hashbrown 0.
|
|
3747
|
+
## hashbrown 0.14.5
|
|
3553
3748
|
|
|
3554
3749
|
```
|
|
3555
3750
|
Copyright (c) 2016 Amanieu d'Antras
|
|
@@ -3611,7 +3806,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3611
3806
|
|
|
3612
3807
|
```
|
|
3613
3808
|
|
|
3614
|
-
## anstyle-parse 0.2.
|
|
3809
|
+
## anstyle-parse 0.2.5
|
|
3615
3810
|
|
|
3616
3811
|
```
|
|
3617
3812
|
Copyright (c) 2016 Joe Wilm and individual contributors
|
|
@@ -3642,7 +3837,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3642
3837
|
|
|
3643
3838
|
```
|
|
3644
3839
|
|
|
3645
|
-
## rustls-native-certs 0.7.
|
|
3840
|
+
## rustls-native-certs 0.7.3, rustls-pemfile 2.1.3, rustls 0.23.13
|
|
3646
3841
|
|
|
3647
3842
|
```
|
|
3648
3843
|
Copyright (c) 2016 Joseph Birr-Pixton <jpixton@gmail.com>
|
|
@@ -3704,7 +3899,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3704
3899
|
|
|
3705
3900
|
```
|
|
3706
3901
|
|
|
3707
|
-
## rustc_version 0.4.
|
|
3902
|
+
## rustc_version 0.4.1
|
|
3708
3903
|
|
|
3709
3904
|
```
|
|
3710
3905
|
Copyright (c) 2016 The Rust Project Developers
|
|
@@ -3855,7 +4050,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3855
4050
|
|
|
3856
4051
|
```
|
|
3857
4052
|
|
|
3858
|
-
## indexmap
|
|
4053
|
+
## indexmap 2.5.0
|
|
3859
4054
|
|
|
3860
4055
|
```
|
|
3861
4056
|
Copyright (c) 2016--2017
|
|
@@ -3917,7 +4112,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
3917
4112
|
|
|
3918
4113
|
```
|
|
3919
4114
|
|
|
3920
|
-
## addr2line 0.
|
|
4115
|
+
## addr2line 0.24.1
|
|
3921
4116
|
|
|
3922
4117
|
```
|
|
3923
4118
|
Copyright (c) 2016-2018 The gimli Developers
|
|
@@ -4206,7 +4401,7 @@ SOFTWARE.
|
|
|
4206
4401
|
|
|
4207
4402
|
```
|
|
4208
4403
|
|
|
4209
|
-
## h2 0.4.
|
|
4404
|
+
## h2 0.4.6
|
|
4210
4405
|
|
|
4211
4406
|
```
|
|
4212
4407
|
Copyright (c) 2017 h2 authors
|
|
@@ -4331,7 +4526,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
4331
4526
|
|
|
4332
4527
|
```
|
|
4333
4528
|
|
|
4334
|
-
## bytes 1.
|
|
4529
|
+
## bytes 1.7.1
|
|
4335
4530
|
|
|
4336
4531
|
```
|
|
4337
4532
|
Copyright (c) 2018 Carl Lerche
|
|
@@ -4758,7 +4953,32 @@ DEALINGS IN THE SOFTWARE.
|
|
|
4758
4953
|
|
|
4759
4954
|
```
|
|
4760
4955
|
|
|
4761
|
-
## protobuf-codegen 3.
|
|
4956
|
+
## protobuf-codegen 3.5.1, protobuf-json-mapping 3.5.1, protobuf-support 3.5.1, protobuf 3.5.1
|
|
4957
|
+
|
|
4958
|
+
```
|
|
4959
|
+
Copyright (c) 2019 Stepan Koltsov
|
|
4960
|
+
|
|
4961
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4962
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
4963
|
+
in the Software without restriction, including without limitation the rights
|
|
4964
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
4965
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
4966
|
+
furnished to do so, subject to the following conditions:
|
|
4967
|
+
|
|
4968
|
+
The above copyright notice and this permission notice shall be included in all
|
|
4969
|
+
copies or substantial portions of the Software.
|
|
4970
|
+
|
|
4971
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
4972
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
4973
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
4974
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
4975
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
4976
|
+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|
4977
|
+
OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4978
|
+
|
|
4979
|
+
```
|
|
4980
|
+
|
|
4981
|
+
## protobuf-parse 3.5.1
|
|
4762
4982
|
|
|
4763
4983
|
```
|
|
4764
4984
|
Copyright (c) 2019 Stepan Koltsov
|
|
@@ -4780,9 +5000,47 @@ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
4780
5000
|
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
4781
5001
|
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
|
|
4782
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
|
+
|
|
4783
5041
|
```
|
|
4784
5042
|
|
|
4785
|
-
## ppv-lite86 0.2.
|
|
5043
|
+
## ppv-lite86 0.2.20
|
|
4786
5044
|
|
|
4787
5045
|
```
|
|
4788
5046
|
Copyright (c) 2019 The CryptoCorrosion Contributors
|
|
@@ -5093,7 +5351,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
5093
5351
|
|
|
5094
5352
|
```
|
|
5095
5353
|
|
|
5096
|
-
## cpufeatures 0.2.
|
|
5354
|
+
## cpufeatures 0.2.14
|
|
5097
5355
|
|
|
5098
5356
|
```
|
|
5099
5357
|
Copyright (c) 2020 The RustCrypto Project Developers
|
|
@@ -5124,7 +5382,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
5124
5382
|
|
|
5125
5383
|
```
|
|
5126
5384
|
|
|
5127
|
-
## memmap2 0.9.
|
|
5385
|
+
## memmap2 0.9.5
|
|
5128
5386
|
|
|
5129
5387
|
```
|
|
5130
5388
|
Copyright (c) 2020 Yevhenii Reizner
|
|
@@ -5306,7 +5564,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
5306
5564
|
|
|
5307
5565
|
```
|
|
5308
5566
|
|
|
5309
|
-
## anstyle 1.0.
|
|
5567
|
+
## anstyle 1.0.8
|
|
5310
5568
|
|
|
5311
5569
|
```
|
|
5312
5570
|
Copyright (c) 2022 The rust-cli Developers
|
|
@@ -5356,7 +5614,7 @@ SOFTWARE.
|
|
|
5356
5614
|
|
|
5357
5615
|
```
|
|
5358
5616
|
|
|
5359
|
-
## rustls-pki-types 1.
|
|
5617
|
+
## rustls-pki-types 1.8.0
|
|
5360
5618
|
|
|
5361
5619
|
```
|
|
5362
5620
|
Copyright (c) 2023 Dirkjan Ochtman <dirkjan@ochtman.nl>
|
|
@@ -5437,7 +5695,7 @@ SOFTWARE.
|
|
|
5437
5695
|
|
|
5438
5696
|
```
|
|
5439
5697
|
|
|
5440
|
-
## hyper-util 0.1.
|
|
5698
|
+
## hyper-util 0.1.8
|
|
5441
5699
|
|
|
5442
5700
|
```
|
|
5443
5701
|
Copyright (c) 2023 Sean McArthur
|
|
@@ -5462,37 +5720,6 @@ THE SOFTWARE.
|
|
|
5462
5720
|
|
|
5463
5721
|
```
|
|
5464
5722
|
|
|
5465
|
-
## tokio-stream 0.1.15, tokio-util 0.7.11
|
|
5466
|
-
|
|
5467
|
-
```
|
|
5468
|
-
Copyright (c) 2023 Tokio Contributors
|
|
5469
|
-
|
|
5470
|
-
Permission is hereby granted, free of charge, to any
|
|
5471
|
-
person obtaining a copy of this software and associated
|
|
5472
|
-
documentation files (the "Software"), to deal in the
|
|
5473
|
-
Software without restriction, including without
|
|
5474
|
-
limitation the rights to use, copy, modify, merge,
|
|
5475
|
-
publish, distribute, sublicense, and/or sell copies of
|
|
5476
|
-
the Software, and to permit persons to whom the Software
|
|
5477
|
-
is furnished to do so, subject to the following
|
|
5478
|
-
conditions:
|
|
5479
|
-
|
|
5480
|
-
The above copyright notice and this permission notice
|
|
5481
|
-
shall be included in all copies or substantial portions
|
|
5482
|
-
of the Software.
|
|
5483
|
-
|
|
5484
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
5485
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
5486
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
5487
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
5488
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
5489
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
5490
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
5491
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
5492
|
-
DEALINGS IN THE SOFTWARE.
|
|
5493
|
-
|
|
5494
|
-
```
|
|
5495
|
-
|
|
5496
5723
|
## time 0.3.36
|
|
5497
5724
|
|
|
5498
5725
|
```
|
|
@@ -5518,7 +5745,7 @@ SOFTWARE.
|
|
|
5518
5745
|
|
|
5519
5746
|
```
|
|
5520
5747
|
|
|
5521
|
-
## 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
|
|
5522
5749
|
|
|
5523
5750
|
```
|
|
5524
5751
|
Copyright (c) Individual contributors
|
|
@@ -5555,7 +5782,7 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
5555
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.
|
|
5556
5783
|
```
|
|
5557
5784
|
|
|
5558
|
-
## arrayvec 0.7.
|
|
5785
|
+
## arrayvec 0.7.6
|
|
5559
5786
|
|
|
5560
5787
|
```
|
|
5561
5788
|
Copyright (c) Ulrik Sverdrup "bluss" 2015-2023
|
|
@@ -5681,7 +5908,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
5681
5908
|
|
|
5682
5909
|
```
|
|
5683
5910
|
|
|
5684
|
-
## 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
|
|
5685
5912
|
|
|
5686
5913
|
```
|
|
5687
5914
|
MIT License
|
|
@@ -5762,7 +5989,7 @@ SOFTWARE.
|
|
|
5762
5989
|
|
|
5763
5990
|
```
|
|
5764
5991
|
|
|
5765
|
-
## miniz_oxide 0.
|
|
5992
|
+
## miniz_oxide 0.8.0
|
|
5766
5993
|
|
|
5767
5994
|
```
|
|
5768
5995
|
MIT License
|
|
@@ -6221,7 +6448,7 @@ SOFTWARE.
|
|
|
6221
6448
|
|
|
6222
6449
|
```
|
|
6223
6450
|
|
|
6224
|
-
## cachemap2 0.
|
|
6451
|
+
## cachemap2 0.3.0
|
|
6225
6452
|
|
|
6226
6453
|
```
|
|
6227
6454
|
MIT License
|
|
@@ -6248,7 +6475,7 @@ SOFTWARE.
|
|
|
6248
6475
|
|
|
6249
6476
|
```
|
|
6250
6477
|
|
|
6251
|
-
## rustls-platform-verifier-android 0.1.
|
|
6478
|
+
## rustls-platform-verifier-android 0.1.1, rustls-platform-verifier 0.3.4
|
|
6252
6479
|
|
|
6253
6480
|
```
|
|
6254
6481
|
MIT License
|
|
@@ -6290,7 +6517,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
6290
6517
|
|
|
6291
6518
|
```
|
|
6292
6519
|
|
|
6293
|
-
## tokio 1.
|
|
6520
|
+
## tokio-stream 0.1.16, tokio-util 0.7.12, tokio 1.40.0
|
|
6294
6521
|
|
|
6295
6522
|
```
|
|
6296
6523
|
MIT License
|
|
@@ -6401,7 +6628,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
6401
6628
|
|
|
6402
6629
|
```
|
|
6403
6630
|
|
|
6404
|
-
## 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
|
|
6405
6632
|
|
|
6406
6633
|
```
|
|
6407
6634
|
Permission is hereby granted, free of charge, to any
|
|
@@ -6430,7 +6657,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
6430
6657
|
|
|
6431
6658
|
```
|
|
6432
6659
|
|
|
6433
|
-
## winnow 0.
|
|
6660
|
+
## winnow 0.6.18
|
|
6434
6661
|
|
|
6435
6662
|
```
|
|
6436
6663
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
@@ -6570,7 +6797,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
6570
6797
|
THE SOFTWARE.
|
|
6571
6798
|
```
|
|
6572
6799
|
|
|
6573
|
-
## base64 0.
|
|
6800
|
+
## base64 0.22.1
|
|
6574
6801
|
|
|
6575
6802
|
```
|
|
6576
6803
|
The MIT License (MIT)
|
|
@@ -6624,7 +6851,7 @@ THE SOFTWARE.
|
|
|
6624
6851
|
|
|
6625
6852
|
```
|
|
6626
6853
|
|
|
6627
|
-
## strsim 0.10.0
|
|
6854
|
+
## strsim 0.10.0, strsim 0.11.1
|
|
6628
6855
|
|
|
6629
6856
|
```
|
|
6630
6857
|
The MIT License (MIT)
|
|
@@ -6762,7 +6989,7 @@ SOFTWARE.
|
|
|
6762
6989
|
|
|
6763
6990
|
```
|
|
6764
6991
|
|
|
6765
|
-
## clap_builder 4.
|
|
6992
|
+
## clap_builder 4.5.17, clap_derive 4.5.13, clap_lex 0.7.2
|
|
6766
6993
|
|
|
6767
6994
|
```
|
|
6768
6995
|
The MIT License (MIT)
|
|
@@ -6870,7 +7097,7 @@ SOFTWARE.
|
|
|
6870
7097
|
|
|
6871
7098
|
```
|
|
6872
7099
|
|
|
6873
|
-
## same-file 1.0.6, winapi-util 0.1.
|
|
7100
|
+
## same-file 1.0.6, winapi-util 0.1.9
|
|
6874
7101
|
|
|
6875
7102
|
```
|
|
6876
7103
|
The MIT License (MIT)
|
|
@@ -7045,7 +7272,7 @@ SOFTWARE.
|
|
|
7045
7272
|
|
|
7046
7273
|
```
|
|
7047
7274
|
|
|
7048
|
-
## version_check 0.9.
|
|
7275
|
+
## version_check 0.9.5
|
|
7049
7276
|
|
|
7050
7277
|
```
|
|
7051
7278
|
The MIT License (MIT)
|
|
@@ -7181,7 +7408,7 @@ SOFTWARE.
|
|
|
7181
7408
|
*/
|
|
7182
7409
|
```
|
|
7183
7410
|
|
|
7184
|
-
## unicode-ident 1.0.
|
|
7411
|
+
## unicode-ident 1.0.13
|
|
7185
7412
|
|
|
7186
7413
|
```
|
|
7187
7414
|
UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
|
package/dist/index.js
CHANGED
|
@@ -39,19 +39,19 @@ var CiphertextMessageType;
|
|
|
39
39
|
CiphertextMessageType[CiphertextMessageType["PreKey"] = 3] = "PreKey";
|
|
40
40
|
CiphertextMessageType[CiphertextMessageType["SenderKey"] = 7] = "SenderKey";
|
|
41
41
|
CiphertextMessageType[CiphertextMessageType["Plaintext"] = 8] = "Plaintext";
|
|
42
|
-
})(CiphertextMessageType
|
|
42
|
+
})(CiphertextMessageType || (exports.CiphertextMessageType = CiphertextMessageType = {}));
|
|
43
43
|
var Direction;
|
|
44
44
|
(function (Direction) {
|
|
45
45
|
Direction[Direction["Sending"] = 0] = "Sending";
|
|
46
46
|
Direction[Direction["Receiving"] = 1] = "Receiving";
|
|
47
|
-
})(Direction
|
|
47
|
+
})(Direction || (exports.Direction = Direction = {}));
|
|
48
48
|
// This enum must be kept in sync with sealed_sender.proto.
|
|
49
49
|
var ContentHint;
|
|
50
50
|
(function (ContentHint) {
|
|
51
51
|
ContentHint[ContentHint["Default"] = 0] = "Default";
|
|
52
52
|
ContentHint[ContentHint["Resendable"] = 1] = "Resendable";
|
|
53
53
|
ContentHint[ContentHint["Implicit"] = 2] = "Implicit";
|
|
54
|
-
})(ContentHint
|
|
54
|
+
})(ContentHint || (exports.ContentHint = ContentHint = {}));
|
|
55
55
|
class HKDF {
|
|
56
56
|
/**
|
|
57
57
|
* @deprecated Use the top-level 'hkdf' function for standard HKDF behavior
|
|
@@ -1018,7 +1018,7 @@ var LogLevel;
|
|
|
1018
1018
|
LogLevel[LogLevel["Info"] = 3] = "Info";
|
|
1019
1019
|
LogLevel[LogLevel["Debug"] = 4] = "Debug";
|
|
1020
1020
|
LogLevel[LogLevel["Trace"] = 5] = "Trace";
|
|
1021
|
-
})(LogLevel
|
|
1021
|
+
})(LogLevel || (exports.LogLevel = LogLevel = {}));
|
|
1022
1022
|
function initLogger(maxLevel, callback) {
|
|
1023
1023
|
let nativeMaxLevel;
|
|
1024
1024
|
switch (maxLevel) {
|
package/dist/net.js
CHANGED
|
@@ -14,7 +14,7 @@ var Environment;
|
|
|
14
14
|
(function (Environment) {
|
|
15
15
|
Environment[Environment["Staging"] = 0] = "Staging";
|
|
16
16
|
Environment[Environment["Production"] = 1] = "Production";
|
|
17
|
-
})(Environment
|
|
17
|
+
})(Environment || (exports.Environment = Environment = {}));
|
|
18
18
|
function newNativeHandle(handle) {
|
|
19
19
|
return {
|
|
20
20
|
_nativeHandle: handle,
|
|
@@ -10,6 +10,6 @@ class NotarySignature extends ByteArray_1.default {
|
|
|
10
10
|
super(contents, NotarySignature.checkLength(NotarySignature.SIZE));
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
|
-
exports.default = NotarySignature;
|
|
14
13
|
NotarySignature.SIZE = 64;
|
|
14
|
+
exports.default = NotarySignature;
|
|
15
15
|
//# sourceMappingURL=NotarySignature.js.map
|
|
@@ -10,6 +10,6 @@ class GroupIdentifier extends ByteArray_1.default {
|
|
|
10
10
|
super(contents, GroupIdentifier.checkLength(GroupIdentifier.SIZE));
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
|
-
exports.default = GroupIdentifier;
|
|
14
13
|
GroupIdentifier.SIZE = 32;
|
|
14
|
+
exports.default = GroupIdentifier;
|
|
15
15
|
//# sourceMappingURL=GroupIdentifier.js.map
|
|
@@ -10,6 +10,6 @@ class GroupMasterKey extends ByteArray_1.default {
|
|
|
10
10
|
super(contents, GroupMasterKey.checkLength(GroupMasterKey.SIZE));
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
|
-
exports.default = GroupMasterKey;
|
|
14
13
|
GroupMasterKey.SIZE = 32;
|
|
14
|
+
exports.default = GroupMasterKey;
|
|
15
15
|
//# sourceMappingURL=GroupMasterKey.js.map
|
|
@@ -13,6 +13,6 @@ class ProfileKeyVersion extends ByteArray_1.default {
|
|
|
13
13
|
return this.contents.toString('utf8');
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
exports.default = ProfileKeyVersion;
|
|
17
16
|
ProfileKeyVersion.SIZE = 64;
|
|
17
|
+
exports.default = ProfileKeyVersion;
|
|
18
18
|
//# sourceMappingURL=ProfileKeyVersion.js.map
|
|
@@ -21,6 +21,6 @@ class ReceiptCredentialPresentation extends ByteArray_1.default {
|
|
|
21
21
|
return new ReceiptSerial_1.default(Native.ReceiptCredentialPresentation_GetReceiptSerial(this.contents));
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
|
-
exports.default = ReceiptCredentialPresentation;
|
|
25
24
|
ReceiptCredentialPresentation.SIZE = 329;
|
|
25
|
+
exports.default = ReceiptCredentialPresentation;
|
|
26
26
|
//# sourceMappingURL=ReceiptCredentialPresentation.js.map
|
|
@@ -15,6 +15,6 @@ class ReceiptCredentialRequestContext extends ByteArray_1.default {
|
|
|
15
15
|
return new ReceiptCredentialRequest_1.default(Native.ReceiptCredentialRequestContext_GetRequest(this.contents));
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
|
-
exports.default = ReceiptCredentialRequestContext;
|
|
19
18
|
ReceiptCredentialRequestContext.SIZE = 177;
|
|
19
|
+
exports.default = ReceiptCredentialRequestContext;
|
|
20
20
|
//# sourceMappingURL=ReceiptCredentialRequestContext.js.map
|
|
@@ -10,6 +10,6 @@ class ReceiptSerial extends ByteArray_1.default {
|
|
|
10
10
|
super(contents, ReceiptSerial.checkLength(ReceiptSerial.SIZE));
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
|
-
exports.default = ReceiptSerial;
|
|
14
13
|
ReceiptSerial.SIZE = 16;
|
|
14
|
+
exports.default = ReceiptSerial;
|
|
15
15
|
//# sourceMappingURL=ReceiptSerial.js.map
|
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",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"prepack": "cp ../acknowledgments/acknowledgments.md dist"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"node-gyp-build": "^4.
|
|
32
|
-
"type-fest": "^
|
|
31
|
+
"node-gyp-build": "^4.8.0",
|
|
32
|
+
"type-fest": "^4.26.0",
|
|
33
33
|
"uuid": "^8.3.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
@@ -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",
|
|
@@ -63,6 +63,6 @@
|
|
|
63
63
|
"sinon": "^18.0.0",
|
|
64
64
|
"sinon-chai": "^3.7.0",
|
|
65
65
|
"source-map-support": "^0.5.19",
|
|
66
|
-
"typescript": "
|
|
66
|
+
"typescript": "5.3.3"
|
|
67
67
|
}
|
|
68
68
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|