@signalapp/libsignal-client 0.76.4 → 0.76.6
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 +2 -0
- package/dist/EcKeys.d.ts +21 -0
- package/dist/EcKeys.js +27 -0
- package/dist/acknowledgments.md +383 -375
- package/package.json +1 -1
- 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
|
@@ -416,6 +416,7 @@ export function PrivateKey_Agree(privateKey: Wrapper<PrivateKey>, publicKey: Wra
|
|
|
416
416
|
export function PrivateKey_Deserialize(data: Uint8Array): PrivateKey;
|
|
417
417
|
export function PrivateKey_Generate(): PrivateKey;
|
|
418
418
|
export function PrivateKey_GetPublicKey(k: Wrapper<PrivateKey>): PublicKey;
|
|
419
|
+
export function PrivateKey_HpkeOpen(sk: Wrapper<PrivateKey>, ciphertext: Uint8Array, info: Uint8Array, associatedData: Uint8Array): Uint8Array;
|
|
419
420
|
export function PrivateKey_Serialize(obj: Wrapper<PrivateKey>): Uint8Array;
|
|
420
421
|
export function PrivateKey_Sign(key: Wrapper<PrivateKey>, message: Uint8Array): Uint8Array;
|
|
421
422
|
export function ProfileKeyCiphertext_CheckValidContents(buffer: Uint8Array): void;
|
|
@@ -437,6 +438,7 @@ export function PublicKey_Compare(key1: Wrapper<PublicKey>, key2: Wrapper<Public
|
|
|
437
438
|
export function PublicKey_Deserialize(data: Uint8Array): PublicKey;
|
|
438
439
|
export function PublicKey_Equals(lhs: Wrapper<PublicKey>, rhs: Wrapper<PublicKey>): boolean;
|
|
439
440
|
export function PublicKey_GetPublicKeyBytes(obj: Wrapper<PublicKey>): Uint8Array;
|
|
441
|
+
export function PublicKey_HpkeSeal(pk: Wrapper<PublicKey>, plaintext: Uint8Array, info: Uint8Array, associatedData: Uint8Array): Uint8Array;
|
|
440
442
|
export function PublicKey_Serialize(obj: Wrapper<PublicKey>): Uint8Array;
|
|
441
443
|
export function PublicKey_Verify(key: Wrapper<PublicKey>, message: Uint8Array, signature: Uint8Array): boolean;
|
|
442
444
|
export function ReceiptCredentialPresentation_CheckValidContents(buffer: Uint8Array): void;
|
package/dist/EcKeys.d.ts
CHANGED
|
@@ -9,6 +9,19 @@ export declare class PublicKey {
|
|
|
9
9
|
getPublicKeyBytes(): Uint8Array;
|
|
10
10
|
verify(msg: Uint8Array, sig: Uint8Array): boolean;
|
|
11
11
|
verifyAlternateIdentity(other: PublicKey, signature: Uint8Array): boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Seals a message so only the holder of the private key can decrypt it.
|
|
14
|
+
*
|
|
15
|
+
* Uses HPKE ({@link https://www.rfc-editor.org/rfc/rfc9180.html|RFC 9180}). The output will
|
|
16
|
+
* include a type byte indicating the chosen algorithms and ciphertext layout. The `info`
|
|
17
|
+
* parameter should typically be a static value describing the purpose of the message, while
|
|
18
|
+
* `associatedData` can be used to restrict successful decryption beyond holding the private key.
|
|
19
|
+
*
|
|
20
|
+
* A string `info` will be encoded as UTF-8.
|
|
21
|
+
*
|
|
22
|
+
* @see PrivateKey#open
|
|
23
|
+
*/
|
|
24
|
+
seal(msg: Uint8Array, info: string | Uint8Array, associatedData?: Uint8Array): Uint8Array;
|
|
12
25
|
}
|
|
13
26
|
export declare class PrivateKey {
|
|
14
27
|
readonly _nativeHandle: Native.PrivateKey;
|
|
@@ -20,6 +33,14 @@ export declare class PrivateKey {
|
|
|
20
33
|
sign(msg: Uint8Array): Uint8Array;
|
|
21
34
|
agree(other_key: PublicKey): Uint8Array;
|
|
22
35
|
getPublicKey(): PublicKey;
|
|
36
|
+
/**
|
|
37
|
+
* Opens a ciphertext sealed with {@link PublicKey#seal}.
|
|
38
|
+
*
|
|
39
|
+
* Uses HPKE ({@link https://www.rfc-editor.org/rfc/rfc9180.html|RFC 9180}). The input should
|
|
40
|
+
* include its original type byte indicating the chosen algorithms and ciphertext layout. The
|
|
41
|
+
* `info` and `associatedData` must match those used during sealing.
|
|
42
|
+
*/
|
|
43
|
+
open(ciphertext: Uint8Array, info: string | Uint8Array, associatedData?: Uint8Array): Uint8Array;
|
|
23
44
|
}
|
|
24
45
|
export declare class IdentityKeyPair {
|
|
25
46
|
readonly publicKey: PublicKey;
|
package/dist/EcKeys.js
CHANGED
|
@@ -32,6 +32,22 @@ class PublicKey {
|
|
|
32
32
|
verifyAlternateIdentity(other, signature) {
|
|
33
33
|
return Native.IdentityKey_VerifyAlternateIdentity(this, other, signature);
|
|
34
34
|
}
|
|
35
|
+
/**
|
|
36
|
+
* Seals a message so only the holder of the private key can decrypt it.
|
|
37
|
+
*
|
|
38
|
+
* Uses HPKE ({@link https://www.rfc-editor.org/rfc/rfc9180.html|RFC 9180}). The output will
|
|
39
|
+
* include a type byte indicating the chosen algorithms and ciphertext layout. The `info`
|
|
40
|
+
* parameter should typically be a static value describing the purpose of the message, while
|
|
41
|
+
* `associatedData` can be used to restrict successful decryption beyond holding the private key.
|
|
42
|
+
*
|
|
43
|
+
* A string `info` will be encoded as UTF-8.
|
|
44
|
+
*
|
|
45
|
+
* @see PrivateKey#open
|
|
46
|
+
*/
|
|
47
|
+
seal(msg, info, associatedData) {
|
|
48
|
+
const infoBuffer = typeof info === 'string' ? new TextEncoder().encode(info) : info;
|
|
49
|
+
return Native.PublicKey_HpkeSeal(this, msg, infoBuffer, associatedData ?? new Uint8Array());
|
|
50
|
+
}
|
|
35
51
|
}
|
|
36
52
|
exports.PublicKey = PublicKey;
|
|
37
53
|
class PrivateKey {
|
|
@@ -59,6 +75,17 @@ class PrivateKey {
|
|
|
59
75
|
getPublicKey() {
|
|
60
76
|
return PublicKey._fromNativeHandle(Native.PrivateKey_GetPublicKey(this));
|
|
61
77
|
}
|
|
78
|
+
/**
|
|
79
|
+
* Opens a ciphertext sealed with {@link PublicKey#seal}.
|
|
80
|
+
*
|
|
81
|
+
* Uses HPKE ({@link https://www.rfc-editor.org/rfc/rfc9180.html|RFC 9180}). The input should
|
|
82
|
+
* include its original type byte indicating the chosen algorithms and ciphertext layout. The
|
|
83
|
+
* `info` and `associatedData` must match those used during sealing.
|
|
84
|
+
*/
|
|
85
|
+
open(ciphertext, info, associatedData) {
|
|
86
|
+
const infoBuffer = typeof info === 'string' ? new TextEncoder().encode(info) : info;
|
|
87
|
+
return Native.PrivateKey_HpkeOpen(this, ciphertext, infoBuffer, associatedData ?? new Uint8Array());
|
|
88
|
+
}
|
|
62
89
|
}
|
|
63
90
|
exports.PrivateKey = PrivateKey;
|
|
64
91
|
class IdentityKeyPair {
|
package/dist/acknowledgments.md
CHANGED
|
@@ -2007,7 +2007,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
2007
2007
|
|
|
2008
2008
|
```
|
|
2009
2009
|
|
|
2010
|
-
## libcrux-intrinsics 0.0.2, libcrux-ml-kem 0.0.2, libcrux-platform 0.0.2, libcrux-sha3 0.0.2
|
|
2010
|
+
## libcrux-intrinsics 0.0.2, libcrux-intrinsics 0.0.3, libcrux-ml-kem 0.0.2, libcrux-platform 0.0.2, libcrux-sha3 0.0.2, libcrux-sha3 0.0.3
|
|
2011
2011
|
|
|
2012
2012
|
```
|
|
2013
2013
|
Apache License
|
|
@@ -2692,38 +2692,6 @@ limitations under the License.
|
|
|
2692
2692
|
|
|
2693
2693
|
```
|
|
2694
2694
|
|
|
2695
|
-
## arrayref 0.3.9
|
|
2696
|
-
|
|
2697
|
-
```
|
|
2698
|
-
Copyright (c) 2015 David Roundy <roundyd@physics.oregonstate.edu>
|
|
2699
|
-
All rights reserved.
|
|
2700
|
-
|
|
2701
|
-
Redistribution and use in source and binary forms, with or without
|
|
2702
|
-
modification, are permitted provided that the following conditions are
|
|
2703
|
-
met:
|
|
2704
|
-
|
|
2705
|
-
1. Redistributions of source code must retain the above copyright
|
|
2706
|
-
notice, this list of conditions and the following disclaimer.
|
|
2707
|
-
|
|
2708
|
-
2. Redistributions in binary form must reproduce the above copyright
|
|
2709
|
-
notice, this list of conditions and the following disclaimer in the
|
|
2710
|
-
documentation and/or other materials provided with the
|
|
2711
|
-
distribution.
|
|
2712
|
-
|
|
2713
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
2714
|
-
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
2715
|
-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
2716
|
-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
2717
|
-
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
2718
|
-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
2719
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
2720
|
-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
2721
|
-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
2722
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
2723
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
2724
|
-
|
|
2725
|
-
```
|
|
2726
|
-
|
|
2727
2695
|
## bindgen 0.70.1
|
|
2728
2696
|
|
|
2729
2697
|
```
|
|
@@ -3272,68 +3240,6 @@ SOFTWARE.
|
|
|
3272
3240
|
|
|
3273
3241
|
```
|
|
3274
3242
|
|
|
3275
|
-
## form_urlencoded 1.2.1
|
|
3276
|
-
|
|
3277
|
-
```
|
|
3278
|
-
Copyright (c) 2013-2016 The rust-url developers
|
|
3279
|
-
|
|
3280
|
-
Permission is hereby granted, free of charge, to any
|
|
3281
|
-
person obtaining a copy of this software and associated
|
|
3282
|
-
documentation files (the "Software"), to deal in the
|
|
3283
|
-
Software without restriction, including without
|
|
3284
|
-
limitation the rights to use, copy, modify, merge,
|
|
3285
|
-
publish, distribute, sublicense, and/or sell copies of
|
|
3286
|
-
the Software, and to permit persons to whom the Software
|
|
3287
|
-
is furnished to do so, subject to the following
|
|
3288
|
-
conditions:
|
|
3289
|
-
|
|
3290
|
-
The above copyright notice and this permission notice
|
|
3291
|
-
shall be included in all copies or substantial portions
|
|
3292
|
-
of the Software.
|
|
3293
|
-
|
|
3294
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
3295
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
3296
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
3297
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
3298
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3299
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
3300
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
3301
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
3302
|
-
DEALINGS IN THE SOFTWARE.
|
|
3303
|
-
|
|
3304
|
-
```
|
|
3305
|
-
|
|
3306
|
-
## idna 1.0.3, percent-encoding 2.3.1, url 2.5.4
|
|
3307
|
-
|
|
3308
|
-
```
|
|
3309
|
-
Copyright (c) 2013-2022 The rust-url developers
|
|
3310
|
-
|
|
3311
|
-
Permission is hereby granted, free of charge, to any
|
|
3312
|
-
person obtaining a copy of this software and associated
|
|
3313
|
-
documentation files (the "Software"), to deal in the
|
|
3314
|
-
Software without restriction, including without
|
|
3315
|
-
limitation the rights to use, copy, modify, merge,
|
|
3316
|
-
publish, distribute, sublicense, and/or sell copies of
|
|
3317
|
-
the Software, and to permit persons to whom the Software
|
|
3318
|
-
is furnished to do so, subject to the following
|
|
3319
|
-
conditions:
|
|
3320
|
-
|
|
3321
|
-
The above copyright notice and this permission notice
|
|
3322
|
-
shall be included in all copies or substantial portions
|
|
3323
|
-
of the Software.
|
|
3324
|
-
|
|
3325
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
3326
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
3327
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
3328
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
3329
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
3330
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
3331
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
3332
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
3333
|
-
DEALINGS IN THE SOFTWARE.
|
|
3334
|
-
|
|
3335
|
-
```
|
|
3336
|
-
|
|
3337
3243
|
## backtrace 0.3.74, cc 1.2.18, cfg-if 1.0.0, cmake 0.1.48, openssl-probe 0.1.6, rustc-demangle 0.1.24, socket2 0.5.9
|
|
3338
3244
|
|
|
3339
3245
|
```
|
|
@@ -3717,31 +3623,6 @@ THE SOFTWARE.
|
|
|
3717
3623
|
|
|
3718
3624
|
```
|
|
3719
3625
|
|
|
3720
|
-
## anstyle-wincon 3.0.7
|
|
3721
|
-
|
|
3722
|
-
```
|
|
3723
|
-
Copyright (c) 2015 Josh Triplett, 2022 The rust-cli Developers
|
|
3724
|
-
|
|
3725
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
3726
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
3727
|
-
in the Software without restriction, including without limitation the rights
|
|
3728
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
3729
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
3730
|
-
furnished to do so, subject to the following conditions:
|
|
3731
|
-
|
|
3732
|
-
The above copyright notice and this permission notice shall be included in all
|
|
3733
|
-
copies or substantial portions of the Software.
|
|
3734
|
-
|
|
3735
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
3736
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
3737
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
3738
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
3739
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
3740
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
3741
|
-
SOFTWARE.
|
|
3742
|
-
|
|
3743
|
-
```
|
|
3744
|
-
|
|
3745
3626
|
## tempfile 3.19.1
|
|
3746
3627
|
|
|
3747
3628
|
```
|
|
@@ -4175,68 +4056,6 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
4175
4056
|
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.
|
|
4176
4057
|
```
|
|
4177
4058
|
|
|
4178
|
-
## utf8parse 0.2.2
|
|
4179
|
-
|
|
4180
|
-
```
|
|
4181
|
-
Copyright (c) 2016 Joe Wilm
|
|
4182
|
-
|
|
4183
|
-
Permission is hereby granted, free of charge, to any
|
|
4184
|
-
person obtaining a copy of this software and associated
|
|
4185
|
-
documentation files (the "Software"), to deal in the
|
|
4186
|
-
Software without restriction, including without
|
|
4187
|
-
limitation the rights to use, copy, modify, merge,
|
|
4188
|
-
publish, distribute, sublicense, and/or sell copies of
|
|
4189
|
-
the Software, and to permit persons to whom the Software
|
|
4190
|
-
is furnished to do so, subject to the following
|
|
4191
|
-
conditions:
|
|
4192
|
-
|
|
4193
|
-
The above copyright notice and this permission notice
|
|
4194
|
-
shall be included in all copies or substantial portions
|
|
4195
|
-
of the Software.
|
|
4196
|
-
|
|
4197
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
4198
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
4199
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
4200
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
4201
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
4202
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
4203
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
4204
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
4205
|
-
DEALINGS IN THE SOFTWARE.
|
|
4206
|
-
|
|
4207
|
-
```
|
|
4208
|
-
|
|
4209
|
-
## anstyle-parse 0.2.6
|
|
4210
|
-
|
|
4211
|
-
```
|
|
4212
|
-
Copyright (c) 2016 Joe Wilm and individual contributors
|
|
4213
|
-
|
|
4214
|
-
Permission is hereby granted, free of charge, to any
|
|
4215
|
-
person obtaining a copy of this software and associated
|
|
4216
|
-
documentation files (the "Software"), to deal in the
|
|
4217
|
-
Software without restriction, including without
|
|
4218
|
-
limitation the rights to use, copy, modify, merge,
|
|
4219
|
-
publish, distribute, sublicense, and/or sell copies of
|
|
4220
|
-
the Software, and to permit persons to whom the Software
|
|
4221
|
-
is furnished to do so, subject to the following
|
|
4222
|
-
conditions:
|
|
4223
|
-
|
|
4224
|
-
The above copyright notice and this permission notice
|
|
4225
|
-
shall be included in all copies or substantial portions
|
|
4226
|
-
of the Software.
|
|
4227
|
-
|
|
4228
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
4229
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
4230
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
4231
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
4232
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
4233
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
4234
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
4235
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
4236
|
-
DEALINGS IN THE SOFTWARE.
|
|
4237
|
-
|
|
4238
|
-
```
|
|
4239
|
-
|
|
4240
4059
|
## rustls-native-certs 0.8.1, rustls 0.23.25
|
|
4241
4060
|
|
|
4242
4061
|
```
|
|
@@ -4744,36 +4563,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
4744
4563
|
|
|
4745
4564
|
```
|
|
4746
4565
|
|
|
4747
|
-
## stable_deref_trait 1.2.0
|
|
4748
|
-
|
|
4749
|
-
```
|
|
4750
|
-
Copyright (c) 2017 Robert Grosse
|
|
4751
|
-
|
|
4752
|
-
Permission is hereby granted, free of charge, to any
|
|
4753
|
-
person obtaining a copy of this software and associated
|
|
4754
|
-
documentation files (the "Software"), to deal in the
|
|
4755
|
-
Software without restriction, including without
|
|
4756
|
-
limitation the rights to use, copy, modify, merge,
|
|
4757
|
-
publish, distribute, sublicense, and/or sell copies of
|
|
4758
|
-
the Software, and to permit persons to whom the Software
|
|
4759
|
-
is furnished to do so, subject to the following
|
|
4760
|
-
conditions:
|
|
4761
|
-
|
|
4762
|
-
The above copyright notice and this permission notice
|
|
4763
|
-
shall be included in all copies or substantial portions
|
|
4764
|
-
of the Software.
|
|
4765
|
-
|
|
4766
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
4767
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
4768
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
4769
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
4770
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
4771
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
4772
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
4773
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
4774
|
-
DEALINGS IN THE SOFTWARE.
|
|
4775
|
-
```
|
|
4776
|
-
|
|
4777
4566
|
## foreign-types-macros 0.2.3, foreign-types-shared 0.3.1, foreign-types 0.5.0
|
|
4778
4567
|
|
|
4779
4568
|
```
|
|
@@ -5994,31 +5783,6 @@ DEALINGS IN THE SOFTWARE.
|
|
|
5994
5783
|
|
|
5995
5784
|
```
|
|
5996
5785
|
|
|
5997
|
-
## anstyle 1.0.10
|
|
5998
|
-
|
|
5999
|
-
```
|
|
6000
|
-
Copyright (c) 2022 The rust-cli Developers
|
|
6001
|
-
|
|
6002
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6003
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
6004
|
-
in the Software without restriction, including without limitation the rights
|
|
6005
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
6006
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
6007
|
-
furnished to do so, subject to the following conditions:
|
|
6008
|
-
|
|
6009
|
-
The above copyright notice and this permission notice shall be included in all
|
|
6010
|
-
copies or substantial portions of the Software.
|
|
6011
|
-
|
|
6012
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
6013
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
6014
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
6015
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
6016
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
6017
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
6018
|
-
SOFTWARE.
|
|
6019
|
-
|
|
6020
|
-
```
|
|
6021
|
-
|
|
6022
5786
|
## mediasan-common 0.5.3, mp4san-derive 0.5.3, mp4san 0.5.3, webpsan 0.5.3
|
|
6023
5787
|
|
|
6024
5788
|
```
|
|
@@ -6175,7 +5939,7 @@ SOFTWARE.
|
|
|
6175
5939
|
|
|
6176
5940
|
```
|
|
6177
5941
|
|
|
6178
|
-
##
|
|
5942
|
+
## toml_datetime 0.6.8, toml_edit 0.22.24
|
|
6179
5943
|
|
|
6180
5944
|
```
|
|
6181
5945
|
Copyright (c) Individual contributors
|
|
@@ -6225,49 +5989,6 @@ SOFTWARE.
|
|
|
6225
5989
|
|
|
6226
5990
|
```
|
|
6227
5991
|
|
|
6228
|
-
## clap-stdin 0.6.0
|
|
6229
|
-
|
|
6230
|
-
```
|
|
6231
|
-
Copyright (c) Matthew Wood
|
|
6232
|
-
|
|
6233
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6234
|
-
|
|
6235
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6236
|
-
|
|
6237
|
-
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.
|
|
6238
|
-
```
|
|
6239
|
-
|
|
6240
|
-
## idna_adapter 1.2.0
|
|
6241
|
-
|
|
6242
|
-
```
|
|
6243
|
-
Copyright (c) The rust-url developers
|
|
6244
|
-
|
|
6245
|
-
Permission is hereby granted, free of charge, to any
|
|
6246
|
-
person obtaining a copy of this software and associated
|
|
6247
|
-
documentation files (the "Software"), to deal in the
|
|
6248
|
-
Software without restriction, including without
|
|
6249
|
-
limitation the rights to use, copy, modify, merge,
|
|
6250
|
-
publish, distribute, sublicense, and/or sell copies of
|
|
6251
|
-
the Software, and to permit persons to whom the Software
|
|
6252
|
-
is furnished to do so, subject to the following
|
|
6253
|
-
conditions:
|
|
6254
|
-
|
|
6255
|
-
The above copyright notice and this permission notice
|
|
6256
|
-
shall be included in all copies or substantial portions
|
|
6257
|
-
of the Software.
|
|
6258
|
-
|
|
6259
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
6260
|
-
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
6261
|
-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
6262
|
-
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
6263
|
-
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
6264
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
6265
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
6266
|
-
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
6267
|
-
DEALINGS IN THE SOFTWARE.
|
|
6268
|
-
|
|
6269
|
-
```
|
|
6270
|
-
|
|
6271
5992
|
## arrayvec 0.7.6
|
|
6272
5993
|
|
|
6273
5994
|
```
|
|
@@ -6299,19 +6020,6 @@ DEALINGS IN THE SOFTWARE.
|
|
|
6299
6020
|
|
|
6300
6021
|
```
|
|
6301
6022
|
|
|
6302
|
-
## synstructure 0.13.1
|
|
6303
|
-
|
|
6304
|
-
```
|
|
6305
|
-
Copyright 2016 Nika Layzell
|
|
6306
|
-
|
|
6307
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6308
|
-
|
|
6309
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
6310
|
-
|
|
6311
|
-
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.
|
|
6312
|
-
|
|
6313
|
-
```
|
|
6314
|
-
|
|
6315
6023
|
## rand 0.9.0, rand_chacha 0.9.0, rand_core 0.6.4, rand_core 0.9.3
|
|
6316
6024
|
|
|
6317
6025
|
```
|
|
@@ -6389,7 +6097,7 @@ DEALINGS IN THE SOFTWARE.
|
|
|
6389
6097
|
|
|
6390
6098
|
```
|
|
6391
6099
|
|
|
6392
|
-
## encoding_rs 0.8.35
|
|
6100
|
+
## encoding_rs 0.8.35
|
|
6393
6101
|
|
|
6394
6102
|
```
|
|
6395
6103
|
Copyright Mozilla Foundation
|
|
@@ -7203,7 +6911,7 @@ THE SOFTWARE.
|
|
|
7203
6911
|
|
|
7204
6912
|
```
|
|
7205
6913
|
|
|
7206
|
-
## aho-corasick 1.1.3,
|
|
6914
|
+
## aho-corasick 1.1.3, memchr 2.7.4
|
|
7207
6915
|
|
|
7208
6916
|
```
|
|
7209
6917
|
The MIT License (MIT)
|
|
@@ -7340,33 +7048,6 @@ SOFTWARE.
|
|
|
7340
7048
|
|
|
7341
7049
|
```
|
|
7342
7050
|
|
|
7343
|
-
## clap_builder 4.5.35, clap_derive 4.5.32, clap_lex 0.7.4
|
|
7344
|
-
|
|
7345
|
-
```
|
|
7346
|
-
The MIT License (MIT)
|
|
7347
|
-
|
|
7348
|
-
Copyright (c) 2015-2022 Kevin B. Knapp and Clap Contributors
|
|
7349
|
-
|
|
7350
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7351
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7352
|
-
in the Software without restriction, including without limitation the rights
|
|
7353
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7354
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
7355
|
-
furnished to do so, subject to the following conditions:
|
|
7356
|
-
|
|
7357
|
-
The above copyright notice and this permission notice shall be included in all
|
|
7358
|
-
copies or substantial portions of the Software.
|
|
7359
|
-
|
|
7360
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
7361
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
7362
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
7363
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
7364
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
7365
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
7366
|
-
SOFTWARE.
|
|
7367
|
-
|
|
7368
|
-
```
|
|
7369
|
-
|
|
7370
7051
|
## derive_more-impl 2.0.1, derive_more 0.99.19, derive_more 2.0.1
|
|
7371
7052
|
|
|
7372
7053
|
```
|
|
@@ -7647,6 +7328,385 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
7647
7328
|
SOFTWARE.
|
|
7648
7329
|
```
|
|
7649
7330
|
|
|
7331
|
+
## hpke-rs-crypto 0.3.0, hpke-rs 0.3.0
|
|
7332
|
+
|
|
7333
|
+
```
|
|
7334
|
+
Mozilla Public License Version 2.0
|
|
7335
|
+
==================================
|
|
7336
|
+
|
|
7337
|
+
1. Definitions
|
|
7338
|
+
--------------
|
|
7339
|
+
|
|
7340
|
+
1.1. "Contributor"
|
|
7341
|
+
means each individual or legal entity that creates, contributes to
|
|
7342
|
+
the creation of, or owns Covered Software.
|
|
7343
|
+
|
|
7344
|
+
1.2. "Contributor Version"
|
|
7345
|
+
means the combination of the Contributions of others (if any) used
|
|
7346
|
+
by a Contributor and that particular Contributor's Contribution.
|
|
7347
|
+
|
|
7348
|
+
1.3. "Contribution"
|
|
7349
|
+
means Covered Software of a particular Contributor.
|
|
7350
|
+
|
|
7351
|
+
1.4. "Covered Software"
|
|
7352
|
+
means Source Code Form to which the initial Contributor has attached
|
|
7353
|
+
the notice in Exhibit A, the Executable Form of such Source Code
|
|
7354
|
+
Form, and Modifications of such Source Code Form, in each case
|
|
7355
|
+
including portions thereof.
|
|
7356
|
+
|
|
7357
|
+
1.5. "Incompatible With Secondary Licenses"
|
|
7358
|
+
means
|
|
7359
|
+
|
|
7360
|
+
(a) that the initial Contributor has attached the notice described
|
|
7361
|
+
in Exhibit B to the Covered Software; or
|
|
7362
|
+
|
|
7363
|
+
(b) that the Covered Software was made available under the terms of
|
|
7364
|
+
version 1.1 or earlier of the License, but not also under the
|
|
7365
|
+
terms of a Secondary License.
|
|
7366
|
+
|
|
7367
|
+
1.6. "Executable Form"
|
|
7368
|
+
means any form of the work other than Source Code Form.
|
|
7369
|
+
|
|
7370
|
+
1.7. "Larger Work"
|
|
7371
|
+
means a work that combines Covered Software with other material, in
|
|
7372
|
+
a separate file or files, that is not Covered Software.
|
|
7373
|
+
|
|
7374
|
+
1.8. "License"
|
|
7375
|
+
means this document.
|
|
7376
|
+
|
|
7377
|
+
1.9. "Licensable"
|
|
7378
|
+
means having the right to grant, to the maximum extent possible,
|
|
7379
|
+
whether at the time of the initial grant or subsequently, any and
|
|
7380
|
+
all of the rights conveyed by this License.
|
|
7381
|
+
|
|
7382
|
+
1.10. "Modifications"
|
|
7383
|
+
means any of the following:
|
|
7384
|
+
|
|
7385
|
+
(a) any file in Source Code Form that results from an addition to,
|
|
7386
|
+
deletion from, or modification of the contents of Covered
|
|
7387
|
+
Software; or
|
|
7388
|
+
|
|
7389
|
+
(b) any new file in Source Code Form that contains any Covered
|
|
7390
|
+
Software.
|
|
7391
|
+
|
|
7392
|
+
1.11. "Patent Claims" of a Contributor
|
|
7393
|
+
means any patent claim(s), including without limitation, method,
|
|
7394
|
+
process, and apparatus claims, in any patent Licensable by such
|
|
7395
|
+
Contributor that would be infringed, but for the grant of the
|
|
7396
|
+
License, by the making, using, selling, offering for sale, having
|
|
7397
|
+
made, import, or transfer of either its Contributions or its
|
|
7398
|
+
Contributor Version.
|
|
7399
|
+
|
|
7400
|
+
1.12. "Secondary License"
|
|
7401
|
+
means either the GNU General Public License, Version 2.0, the GNU
|
|
7402
|
+
Lesser General Public License, Version 2.1, the GNU Affero General
|
|
7403
|
+
Public License, Version 3.0, or any later versions of those
|
|
7404
|
+
licenses.
|
|
7405
|
+
|
|
7406
|
+
1.13. "Source Code Form"
|
|
7407
|
+
means the form of the work preferred for making modifications.
|
|
7408
|
+
|
|
7409
|
+
1.14. "You" (or "Your")
|
|
7410
|
+
means an individual or a legal entity exercising rights under this
|
|
7411
|
+
License. For legal entities, "You" includes any entity that
|
|
7412
|
+
controls, is controlled by, or is under common control with You. For
|
|
7413
|
+
purposes of this definition, "control" means (a) the power, direct
|
|
7414
|
+
or indirect, to cause the direction or management of such entity,
|
|
7415
|
+
whether by contract or otherwise, or (b) ownership of more than
|
|
7416
|
+
fifty percent (50%) of the outstanding shares or beneficial
|
|
7417
|
+
ownership of such entity.
|
|
7418
|
+
|
|
7419
|
+
2. License Grants and Conditions
|
|
7420
|
+
--------------------------------
|
|
7421
|
+
|
|
7422
|
+
2.1. Grants
|
|
7423
|
+
|
|
7424
|
+
Each Contributor hereby grants You a world-wide, royalty-free,
|
|
7425
|
+
non-exclusive license:
|
|
7426
|
+
|
|
7427
|
+
(a) under intellectual property rights (other than patent or trademark)
|
|
7428
|
+
Licensable by such Contributor to use, reproduce, make available,
|
|
7429
|
+
modify, display, perform, distribute, and otherwise exploit its
|
|
7430
|
+
Contributions, either on an unmodified basis, with Modifications, or
|
|
7431
|
+
as part of a Larger Work; and
|
|
7432
|
+
|
|
7433
|
+
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
|
7434
|
+
for sale, have made, import, and otherwise transfer either its
|
|
7435
|
+
Contributions or its Contributor Version.
|
|
7436
|
+
|
|
7437
|
+
2.2. Effective Date
|
|
7438
|
+
|
|
7439
|
+
The licenses granted in Section 2.1 with respect to any Contribution
|
|
7440
|
+
become effective for each Contribution on the date the Contributor first
|
|
7441
|
+
distributes such Contribution.
|
|
7442
|
+
|
|
7443
|
+
2.3. Limitations on Grant Scope
|
|
7444
|
+
|
|
7445
|
+
The licenses granted in this Section 2 are the only rights granted under
|
|
7446
|
+
this License. No additional rights or licenses will be implied from the
|
|
7447
|
+
distribution or licensing of Covered Software under this License.
|
|
7448
|
+
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
|
7449
|
+
Contributor:
|
|
7450
|
+
|
|
7451
|
+
(a) for any code that a Contributor has removed from Covered Software;
|
|
7452
|
+
or
|
|
7453
|
+
|
|
7454
|
+
(b) for infringements caused by: (i) Your and any other third party's
|
|
7455
|
+
modifications of Covered Software, or (ii) the combination of its
|
|
7456
|
+
Contributions with other software (except as part of its Contributor
|
|
7457
|
+
Version); or
|
|
7458
|
+
|
|
7459
|
+
(c) under Patent Claims infringed by Covered Software in the absence of
|
|
7460
|
+
its Contributions.
|
|
7461
|
+
|
|
7462
|
+
This License does not grant any rights in the trademarks, service marks,
|
|
7463
|
+
or logos of any Contributor (except as may be necessary to comply with
|
|
7464
|
+
the notice requirements in Section 3.4).
|
|
7465
|
+
|
|
7466
|
+
2.4. Subsequent Licenses
|
|
7467
|
+
|
|
7468
|
+
No Contributor makes additional grants as a result of Your choice to
|
|
7469
|
+
distribute the Covered Software under a subsequent version of this
|
|
7470
|
+
License (see Section 10.2) or under the terms of a Secondary License (if
|
|
7471
|
+
permitted under the terms of Section 3.3).
|
|
7472
|
+
|
|
7473
|
+
2.5. Representation
|
|
7474
|
+
|
|
7475
|
+
Each Contributor represents that the Contributor believes its
|
|
7476
|
+
Contributions are its original creation(s) or it has sufficient rights
|
|
7477
|
+
to grant the rights to its Contributions conveyed by this License.
|
|
7478
|
+
|
|
7479
|
+
2.6. Fair Use
|
|
7480
|
+
|
|
7481
|
+
This License is not intended to limit any rights You have under
|
|
7482
|
+
applicable copyright doctrines of fair use, fair dealing, or other
|
|
7483
|
+
equivalents.
|
|
7484
|
+
|
|
7485
|
+
2.7. Conditions
|
|
7486
|
+
|
|
7487
|
+
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
|
7488
|
+
in Section 2.1.
|
|
7489
|
+
|
|
7490
|
+
3. Responsibilities
|
|
7491
|
+
-------------------
|
|
7492
|
+
|
|
7493
|
+
3.1. Distribution of Source Form
|
|
7494
|
+
|
|
7495
|
+
All distribution of Covered Software in Source Code Form, including any
|
|
7496
|
+
Modifications that You create or to which You contribute, must be under
|
|
7497
|
+
the terms of this License. You must inform recipients that the Source
|
|
7498
|
+
Code Form of the Covered Software is governed by the terms of this
|
|
7499
|
+
License, and how they can obtain a copy of this License. You may not
|
|
7500
|
+
attempt to alter or restrict the recipients' rights in the Source Code
|
|
7501
|
+
Form.
|
|
7502
|
+
|
|
7503
|
+
3.2. Distribution of Executable Form
|
|
7504
|
+
|
|
7505
|
+
If You distribute Covered Software in Executable Form then:
|
|
7506
|
+
|
|
7507
|
+
(a) such Covered Software must also be made available in Source Code
|
|
7508
|
+
Form, as described in Section 3.1, and You must inform recipients of
|
|
7509
|
+
the Executable Form how they can obtain a copy of such Source Code
|
|
7510
|
+
Form by reasonable means in a timely manner, at a charge no more
|
|
7511
|
+
than the cost of distribution to the recipient; and
|
|
7512
|
+
|
|
7513
|
+
(b) You may distribute such Executable Form under the terms of this
|
|
7514
|
+
License, or sublicense it under different terms, provided that the
|
|
7515
|
+
license for the Executable Form does not attempt to limit or alter
|
|
7516
|
+
the recipients' rights in the Source Code Form under this License.
|
|
7517
|
+
|
|
7518
|
+
3.3. Distribution of a Larger Work
|
|
7519
|
+
|
|
7520
|
+
You may create and distribute a Larger Work under terms of Your choice,
|
|
7521
|
+
provided that You also comply with the requirements of this License for
|
|
7522
|
+
the Covered Software. If the Larger Work is a combination of Covered
|
|
7523
|
+
Software with a work governed by one or more Secondary Licenses, and the
|
|
7524
|
+
Covered Software is not Incompatible With Secondary Licenses, this
|
|
7525
|
+
License permits You to additionally distribute such Covered Software
|
|
7526
|
+
under the terms of such Secondary License(s), so that the recipient of
|
|
7527
|
+
the Larger Work may, at their option, further distribute the Covered
|
|
7528
|
+
Software under the terms of either this License or such Secondary
|
|
7529
|
+
License(s).
|
|
7530
|
+
|
|
7531
|
+
3.4. Notices
|
|
7532
|
+
|
|
7533
|
+
You may not remove or alter the substance of any license notices
|
|
7534
|
+
(including copyright notices, patent notices, disclaimers of warranty,
|
|
7535
|
+
or limitations of liability) contained within the Source Code Form of
|
|
7536
|
+
the Covered Software, except that You may alter any license notices to
|
|
7537
|
+
the extent required to remedy known factual inaccuracies.
|
|
7538
|
+
|
|
7539
|
+
3.5. Application of Additional Terms
|
|
7540
|
+
|
|
7541
|
+
You may choose to offer, and to charge a fee for, warranty, support,
|
|
7542
|
+
indemnity or liability obligations to one or more recipients of Covered
|
|
7543
|
+
Software. However, You may do so only on Your own behalf, and not on
|
|
7544
|
+
behalf of any Contributor. You must make it absolutely clear that any
|
|
7545
|
+
such warranty, support, indemnity, or liability obligation is offered by
|
|
7546
|
+
You alone, and You hereby agree to indemnify every Contributor for any
|
|
7547
|
+
liability incurred by such Contributor as a result of warranty, support,
|
|
7548
|
+
indemnity or liability terms You offer. You may include additional
|
|
7549
|
+
disclaimers of warranty and limitations of liability specific to any
|
|
7550
|
+
jurisdiction.
|
|
7551
|
+
|
|
7552
|
+
4. Inability to Comply Due to Statute or Regulation
|
|
7553
|
+
---------------------------------------------------
|
|
7554
|
+
|
|
7555
|
+
If it is impossible for You to comply with any of the terms of this
|
|
7556
|
+
License with respect to some or all of the Covered Software due to
|
|
7557
|
+
statute, judicial order, or regulation then You must: (a) comply with
|
|
7558
|
+
the terms of this License to the maximum extent possible; and (b)
|
|
7559
|
+
describe the limitations and the code they affect. Such description must
|
|
7560
|
+
be placed in a text file included with all distributions of the Covered
|
|
7561
|
+
Software under this License. Except to the extent prohibited by statute
|
|
7562
|
+
or regulation, such description must be sufficiently detailed for a
|
|
7563
|
+
recipient of ordinary skill to be able to understand it.
|
|
7564
|
+
|
|
7565
|
+
5. Termination
|
|
7566
|
+
--------------
|
|
7567
|
+
|
|
7568
|
+
5.1. The rights granted under this License will terminate automatically
|
|
7569
|
+
if You fail to comply with any of its terms. However, if You become
|
|
7570
|
+
compliant, then the rights granted under this License from a particular
|
|
7571
|
+
Contributor are reinstated (a) provisionally, unless and until such
|
|
7572
|
+
Contributor explicitly and finally terminates Your grants, and (b) on an
|
|
7573
|
+
ongoing basis, if such Contributor fails to notify You of the
|
|
7574
|
+
non-compliance by some reasonable means prior to 60 days after You have
|
|
7575
|
+
come back into compliance. Moreover, Your grants from a particular
|
|
7576
|
+
Contributor are reinstated on an ongoing basis if such Contributor
|
|
7577
|
+
notifies You of the non-compliance by some reasonable means, this is the
|
|
7578
|
+
first time You have received notice of non-compliance with this License
|
|
7579
|
+
from such Contributor, and You become compliant prior to 30 days after
|
|
7580
|
+
Your receipt of the notice.
|
|
7581
|
+
|
|
7582
|
+
5.2. If You initiate litigation against any entity by asserting a patent
|
|
7583
|
+
infringement claim (excluding declaratory judgment actions,
|
|
7584
|
+
counter-claims, and cross-claims) alleging that a Contributor Version
|
|
7585
|
+
directly or indirectly infringes any patent, then the rights granted to
|
|
7586
|
+
You by any and all Contributors for the Covered Software under Section
|
|
7587
|
+
2.1 of this License shall terminate.
|
|
7588
|
+
|
|
7589
|
+
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
|
7590
|
+
end user license agreements (excluding distributors and resellers) which
|
|
7591
|
+
have been validly granted by You or Your distributors under this License
|
|
7592
|
+
prior to termination shall survive termination.
|
|
7593
|
+
|
|
7594
|
+
************************************************************************
|
|
7595
|
+
* *
|
|
7596
|
+
* 6. Disclaimer of Warranty *
|
|
7597
|
+
* ------------------------- *
|
|
7598
|
+
* *
|
|
7599
|
+
* Covered Software is provided under this License on an "as is" *
|
|
7600
|
+
* basis, without warranty of any kind, either expressed, implied, or *
|
|
7601
|
+
* statutory, including, without limitation, warranties that the *
|
|
7602
|
+
* Covered Software is free of defects, merchantable, fit for a *
|
|
7603
|
+
* particular purpose or non-infringing. The entire risk as to the *
|
|
7604
|
+
* quality and performance of the Covered Software is with You. *
|
|
7605
|
+
* Should any Covered Software prove defective in any respect, You *
|
|
7606
|
+
* (not any Contributor) assume the cost of any necessary servicing, *
|
|
7607
|
+
* repair, or correction. This disclaimer of warranty constitutes an *
|
|
7608
|
+
* essential part of this License. No use of any Covered Software is *
|
|
7609
|
+
* authorized under this License except under this disclaimer. *
|
|
7610
|
+
* *
|
|
7611
|
+
************************************************************************
|
|
7612
|
+
|
|
7613
|
+
************************************************************************
|
|
7614
|
+
* *
|
|
7615
|
+
* 7. Limitation of Liability *
|
|
7616
|
+
* -------------------------- *
|
|
7617
|
+
* *
|
|
7618
|
+
* Under no circumstances and under no legal theory, whether tort *
|
|
7619
|
+
* (including negligence), contract, or otherwise, shall any *
|
|
7620
|
+
* Contributor, or anyone who distributes Covered Software as *
|
|
7621
|
+
* permitted above, be liable to You for any direct, indirect, *
|
|
7622
|
+
* special, incidental, or consequential damages of any character *
|
|
7623
|
+
* including, without limitation, damages for lost profits, loss of *
|
|
7624
|
+
* goodwill, work stoppage, computer failure or malfunction, or any *
|
|
7625
|
+
* and all other commercial damages or losses, even if such party *
|
|
7626
|
+
* shall have been informed of the possibility of such damages. This *
|
|
7627
|
+
* limitation of liability shall not apply to liability for death or *
|
|
7628
|
+
* personal injury resulting from such party's negligence to the *
|
|
7629
|
+
* extent applicable law prohibits such limitation. Some *
|
|
7630
|
+
* jurisdictions do not allow the exclusion or limitation of *
|
|
7631
|
+
* incidental or consequential damages, so this exclusion and *
|
|
7632
|
+
* limitation may not apply to You. *
|
|
7633
|
+
* *
|
|
7634
|
+
************************************************************************
|
|
7635
|
+
|
|
7636
|
+
8. Litigation
|
|
7637
|
+
-------------
|
|
7638
|
+
|
|
7639
|
+
Any litigation relating to this License may be brought only in the
|
|
7640
|
+
courts of a jurisdiction where the defendant maintains its principal
|
|
7641
|
+
place of business and such litigation shall be governed by laws of that
|
|
7642
|
+
jurisdiction, without reference to its conflict-of-law provisions.
|
|
7643
|
+
Nothing in this Section shall prevent a party's ability to bring
|
|
7644
|
+
cross-claims or counter-claims.
|
|
7645
|
+
|
|
7646
|
+
9. Miscellaneous
|
|
7647
|
+
----------------
|
|
7648
|
+
|
|
7649
|
+
This License represents the complete agreement concerning the subject
|
|
7650
|
+
matter hereof. If any provision of this License is held to be
|
|
7651
|
+
unenforceable, such provision shall be reformed only to the extent
|
|
7652
|
+
necessary to make it enforceable. Any law or regulation which provides
|
|
7653
|
+
that the language of a contract shall be construed against the drafter
|
|
7654
|
+
shall not be used to construe this License against a Contributor.
|
|
7655
|
+
|
|
7656
|
+
10. Versions of the License
|
|
7657
|
+
---------------------------
|
|
7658
|
+
|
|
7659
|
+
10.1. New Versions
|
|
7660
|
+
|
|
7661
|
+
Mozilla Foundation is the license steward. Except as provided in Section
|
|
7662
|
+
10.3, no one other than the license steward has the right to modify or
|
|
7663
|
+
publish new versions of this License. Each version will be given a
|
|
7664
|
+
distinguishing version number.
|
|
7665
|
+
|
|
7666
|
+
10.2. Effect of New Versions
|
|
7667
|
+
|
|
7668
|
+
You may distribute the Covered Software under the terms of the version
|
|
7669
|
+
of the License under which You originally received the Covered Software,
|
|
7670
|
+
or under the terms of any subsequent version published by the license
|
|
7671
|
+
steward.
|
|
7672
|
+
|
|
7673
|
+
10.3. Modified Versions
|
|
7674
|
+
|
|
7675
|
+
If you create software not governed by this License, and you want to
|
|
7676
|
+
create a new license for such software, you may create and use a
|
|
7677
|
+
modified version of this License if you rename the license and remove
|
|
7678
|
+
any references to the name of the license steward (except to note that
|
|
7679
|
+
such modified license differs from this License).
|
|
7680
|
+
|
|
7681
|
+
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
|
7682
|
+
Licenses
|
|
7683
|
+
|
|
7684
|
+
If You choose to distribute Source Code Form that is Incompatible With
|
|
7685
|
+
Secondary Licenses under the terms of this version of the License, the
|
|
7686
|
+
notice described in Exhibit B of this License must be attached.
|
|
7687
|
+
|
|
7688
|
+
Exhibit A - Source Code Form License Notice
|
|
7689
|
+
-------------------------------------------
|
|
7690
|
+
|
|
7691
|
+
This Source Code Form is subject to the terms of the Mozilla Public
|
|
7692
|
+
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
7693
|
+
file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
7694
|
+
|
|
7695
|
+
If it is not possible or desirable to put the notice in a particular
|
|
7696
|
+
file, then You may include the notice in a location (such as a LICENSE
|
|
7697
|
+
file in a relevant directory) where a recipient would be likely to look
|
|
7698
|
+
for such a notice.
|
|
7699
|
+
|
|
7700
|
+
You may add additional accurate notices of copyright ownership.
|
|
7701
|
+
|
|
7702
|
+
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
|
7703
|
+
---------------------------------------------------------
|
|
7704
|
+
|
|
7705
|
+
This Source Code Form is "Incompatible With Secondary Licenses", as
|
|
7706
|
+
defined by the Mozilla Public License, v. 2.0.
|
|
7707
|
+
|
|
7708
|
+
```
|
|
7709
|
+
|
|
7650
7710
|
## boring-sys 4.15.0
|
|
7651
7711
|
|
|
7652
7712
|
```
|
|
@@ -7750,58 +7810,6 @@ authorization of the copyright holder.
|
|
|
7750
7810
|
|
|
7751
7811
|
```
|
|
7752
7812
|
|
|
7753
|
-
## icu_collections 1.5.0, icu_locid 1.5.0, icu_locid_transform 1.5.0, icu_locid_transform_data 1.5.1, icu_normalizer 1.5.0, icu_normalizer_data 1.5.1, icu_properties 1.5.1, icu_properties_data 1.5.1, icu_provider 1.5.0, icu_provider_macros 1.5.0, litemap 0.7.4, tinystr 0.7.6, writeable 0.5.5, yoke-derive 0.7.5, yoke 0.7.5, zerofrom-derive 0.1.5, zerofrom 0.1.5, zerovec-derive 0.10.3, zerovec 0.10.4
|
|
7754
|
-
|
|
7755
|
-
```
|
|
7756
|
-
UNICODE LICENSE V3
|
|
7757
|
-
|
|
7758
|
-
COPYRIGHT AND PERMISSION NOTICE
|
|
7759
|
-
|
|
7760
|
-
Copyright © 2020-2024 Unicode, Inc.
|
|
7761
|
-
|
|
7762
|
-
NOTICE TO USER: Carefully read the following legal agreement. BY
|
|
7763
|
-
DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
|
|
7764
|
-
SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
|
|
7765
|
-
TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
|
|
7766
|
-
DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
|
|
7767
|
-
|
|
7768
|
-
Permission is hereby granted, free of charge, to any person obtaining a
|
|
7769
|
-
copy of data files and any associated documentation (the "Data Files") or
|
|
7770
|
-
software and any associated documentation (the "Software") to deal in the
|
|
7771
|
-
Data Files or Software without restriction, including without limitation
|
|
7772
|
-
the rights to use, copy, modify, merge, publish, distribute, and/or sell
|
|
7773
|
-
copies of the Data Files or Software, and to permit persons to whom the
|
|
7774
|
-
Data Files or Software are furnished to do so, provided that either (a)
|
|
7775
|
-
this copyright and permission notice appear with all copies of the Data
|
|
7776
|
-
Files or Software, or (b) this copyright and permission notice appear in
|
|
7777
|
-
associated Documentation.
|
|
7778
|
-
|
|
7779
|
-
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
|
7780
|
-
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
7781
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
7782
|
-
THIRD PARTY RIGHTS.
|
|
7783
|
-
|
|
7784
|
-
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
|
|
7785
|
-
BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
|
|
7786
|
-
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
7787
|
-
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|
7788
|
-
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
|
|
7789
|
-
FILES OR SOFTWARE.
|
|
7790
|
-
|
|
7791
|
-
Except as contained in this notice, the name of a copyright holder shall
|
|
7792
|
-
not be used in advertising or otherwise to promote the sale, use or other
|
|
7793
|
-
dealings in these Data Files or Software without prior written
|
|
7794
|
-
authorization of the copyright holder.
|
|
7795
|
-
|
|
7796
|
-
SPDX-License-Identifier: Unicode-3.0
|
|
7797
|
-
|
|
7798
|
-
—
|
|
7799
|
-
|
|
7800
|
-
Portions of ICU4X may have been adapted from ICU4C and/or ICU4J.
|
|
7801
|
-
ICU 1.8.1 to ICU 57.1 © 1995-2016 International Business Machines Corporation and others.
|
|
7802
|
-
|
|
7803
|
-
```
|
|
7804
|
-
|
|
7805
7813
|
|
|
7806
7814
|
## Kyber Patent License
|
|
7807
7815
|
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|