@@ -28,8 +28,10 @@ the details of which are reproduced below.
2828* [ MIT License: tracing, tracing-attributes, tracing-core, tracing-subscriber] ( #mit-license-tracing-tracing-attributes-tracing-core-tracing-subscriber )
2929* [ MIT License: weedle2] ( #mit-license-weedle2 )
3030* [ CC0-1.0 License: base16] ( #cc0-10-license-base16 )
31+ * [ ISC License: libloading] ( #isc-license-libloading )
3132* [ ISC License: ring] ( #isc-license-ring )
3233* [ BSD-2-Clause License: arrayref] ( #bsd-2-clause-license-arrayref )
34+ * [ BSD-3-Clause License: bindgen] ( #bsd-3-clause-license-bindgen )
3335* [ BSD-3-Clause License: protobuf] ( #bsd-3-clause-license-protobuf )
3436* [ Zlib License: foldhash] ( #zlib-license-foldhash )
3537* [ Unicode-3.0 License: icu_casemap, icu_casemap_data, icu_collections, icu_locale, icu_locale_core, icu_locale_data, icu_normalizer, icu_normalizer_data, icu_properties, icu_properties_data, icu_provider, icu_segmenter, icu_segmenter_data, litemap, potential_utf, tinystr, writeable, yoke, yoke-derive, zerofrom, zerofrom-derive, zerotrie, zerovec, zerovec-derive] ( #unicode-30-license-icu_casemap-icu_casemap_data-icu_collections-icu_locale-icu_locale_core-icu_locale_data-icu_normalizer-icu_normalizer_data-icu_properties-icu_properties_data-icu_provider-icu_segmenter-icu_segmenter_data-litemap-potential_utf-tinystr-writeable-yoke-yoke-derive-zerofrom-zerofrom-derive-zerotrie-zerovec-zerovec-derive )
@@ -445,13 +447,16 @@ The following text applies to code linked from these dependencies:
445447[ autocfg] ( https://github.com/cuviper/autocfg ) ,
446448[ base64] ( https://github.com/marshallpierce/rust-base64 ) ,
447449[ basic-toml] ( https://github.com/dtolnay/basic-toml ) ,
450+ [ bhttp] ( https://github.com/martinthomson/ohttp ) ,
448451[ bitflags] ( https://github.com/bitflags/bitflags ) ,
449452[ block-buffer] ( https://github.com/RustCrypto/utils ) ,
450453[ camino] ( https://github.com/camino-rs/camino ) ,
451454[ cargo-platform] ( https://github.com/rust-lang/cargo ) ,
452455[ cc] ( https://github.com/rust-lang/cc-rs ) ,
456+ [ cexpr] ( https://github.com/jethrogb/rust-cexpr ) ,
453457[ cfg-if] ( https://github.com/alexcrichton/cfg-if ) ,
454458[ chrono] ( https://github.com/chronotope/chrono ) ,
459+ [ clang-sys] ( https://github.com/KyleMayes/clang-sys ) ,
455460[ core-foundation-sys] ( https://github.com/servo/core-foundation-rs ) ,
456461[ cpufeatures] ( https://github.com/RustCrypto/utils ) ,
457462[ crypto-common] ( https://github.com/RustCrypto/traits ) ,
@@ -492,6 +497,7 @@ The following text applies to code linked from these dependencies:
492497[ log] ( https://github.com/rust-lang/log ) ,
493498[ minimal-lexical] ( https://github.com/Alexhuszagh/minimal-lexical ) ,
494499[ num-traits] ( https://github.com/rust-num/num-traits ) ,
500+ [ ohttp] ( https://github.com/martinthomson/ohttp ) ,
495501[ once_cell] ( https://github.com/matklad/once_cell ) ,
496502[ parking_lot] ( https://github.com/Amanieu/parking_lot ) ,
497503[ parking_lot_core] ( https://github.com/Amanieu/parking_lot ) ,
@@ -1589,6 +1595,27 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15891595See the License for the specific language governing permissions and
15901596limitations under the License.
15911597
1598+ ```
1599+ -------------
1600+ ## ISC License: libloading
1601+
1602+ The following text applies to code linked from these dependencies:
1603+ [ libloading] ( https://github.com/nagisa/rust_libloading/ )
1604+
1605+ ```
1606+ Copyright © 2015, Simonas Kazlauskas
1607+
1608+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without
1609+ fee is hereby granted, provided that the above copyright notice and this permission notice appear
1610+ in all copies.
1611+
1612+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
1613+ SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
1614+ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1615+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
1616+ NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
1617+ THIS SOFTWARE.
1618+
15921619```
15931620-------------
15941621## ISC License: ring
@@ -1647,6 +1674,44 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
16471674(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
16481675OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16491676
1677+ ```
1678+ -------------
1679+ ## BSD-3-Clause License: bindgen
1680+
1681+ The following text applies to code linked from these dependencies:
1682+ [ bindgen] ( https://github.com/rust-lang/rust-bindgen )
1683+
1684+ ```
1685+ BSD 3-Clause License
1686+
1687+ Copyright (c) 2013, Jyun-Yan You
1688+ All rights reserved.
1689+
1690+ Redistribution and use in source and binary forms, with or without
1691+ modification, are permitted provided that the following conditions are met:
1692+
1693+ * Redistributions of source code must retain the above copyright notice, this
1694+ list of conditions and the following disclaimer.
1695+
1696+ * Redistributions in binary form must reproduce the above copyright notice,
1697+ this list of conditions and the following disclaimer in the documentation
1698+ and/or other materials provided with the distribution.
1699+
1700+ * Neither the name of the copyright holder nor the names of its
1701+ contributors may be used to endorse or promote products derived from
1702+ this software without specific prior written permission.
1703+
1704+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1705+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1706+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1707+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1708+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1709+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1710+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1711+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1712+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1713+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1714+
16501715```
16511716-------------
16521717## BSD-3-Clause License: protobuf
0 commit comments