From df1bdc4ecf20db3308840219889de687a2a1f9be Mon Sep 17 00:00:00 2001 From: William Lyles <26171886+wilyle@users.noreply.github.com> Date: Tue, 20 Feb 2024 12:00:51 -0800 Subject: [PATCH 1/5] update dependencies --- Cargo.toml | 14 +++++++------- core/invehicle-digital-twin/src/main.rs | 3 ++- external/agemo | 2 +- external/chariott | 2 +- external/iot-plugandplay-models | 2 +- external/opendigitaltwins-dtdl | 2 +- 6 files changed, 13 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ebaa5b25..a85e8184 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,9 +38,9 @@ members = [ [workspace.dependencies] async-std = "^1.5" bytes = "1.4.0" -config = "0.13.3" +config = "0.14.0" dyn-clone = "1.0.14" -env_logger= "0.10.0" +env_logger= "0.11.2" futures = "0.3.28" futures-core = "0.3.4" futures-util = "0.3.28" @@ -57,17 +57,17 @@ parking_lot = "0.12.1" prost = "0.12" prost-types = "0.12" regex = " 1.9.3" -sdl2 = "0.35.2" +sdl2 = "0.36.0" serde = "1.0.160" serde_derive = "1.0.163" serde_json = "^1.0" -strum = "0.25" -strum_macros = "0.25.1" +strum = "0.26.1" +strum_macros = "0.26.1" tokio = "1.29.1" tokio-console-subscriber = { version = "0.2.0", package = "console-subscriber" } tokio-stream = "0.1.14" -tonic = "0.10.0" -tonic-build = "0.10.0" +tonic = "0.11.0" +tonic-build = "0.11.0" tower = "0.4.13" tower-http = "0.4.3" url = "2.3.1" diff --git a/core/invehicle-digital-twin/src/main.rs b/core/invehicle-digital-twin/src/main.rs index bf6f38ed..e17b53a3 100644 --- a/core/invehicle-digital-twin/src/main.rs +++ b/core/invehicle-digital-twin/src/main.rs @@ -30,7 +30,8 @@ use std::net::SocketAddr; use std::str::FromStr; use std::sync::Arc; use tonic::body::BoxBody; -use tonic::transport::{Body, NamedService}; +use tonic::transport::{Body}; +use tonic::server::NamedService; use tonic::{Request, Status}; use tower::layer::util::Identity; use tower::Service; diff --git a/external/agemo b/external/agemo index e4db66ab..5fd67248 160000 --- a/external/agemo +++ b/external/agemo @@ -1 +1 @@ -Subproject commit e4db66abb9d4e10520eec38472f722790d646106 +Subproject commit 5fd672488288aa779d46540f8f32c4d879f5034a diff --git a/external/chariott b/external/chariott index cc04a8f2..91635f36 160000 --- a/external/chariott +++ b/external/chariott @@ -1 +1 @@ -Subproject commit cc04a8f243611018281f7cf8f138f15f32f399c0 +Subproject commit 91635f36a3c30fda3f6dc7b123997571b2209573 diff --git a/external/iot-plugandplay-models b/external/iot-plugandplay-models index 8d9ea407..bc595167 160000 --- a/external/iot-plugandplay-models +++ b/external/iot-plugandplay-models @@ -1 +1 @@ -Subproject commit 8d9ea407dec9dce595073395dfa8118ec6b0f85f +Subproject commit bc595167934c51f2b64dd2042f41257577ee5360 diff --git a/external/opendigitaltwins-dtdl b/external/opendigitaltwins-dtdl index b3f36cf3..c3d5f1e7 160000 --- a/external/opendigitaltwins-dtdl +++ b/external/opendigitaltwins-dtdl @@ -1 +1 @@ -Subproject commit b3f36cf3fb6062a9da68ed4b085a17c7a1144763 +Subproject commit c3d5f1e7759d23cfe22b34521d9b17c261d76187 From c8b6856016047deb965df000782ad9c2e2183ee3 Mon Sep 17 00:00:00 2001 From: William Lyles <26171886+wilyle@users.noreply.github.com> Date: Tue, 20 Feb 2024 12:25:07 -0800 Subject: [PATCH 2/5] fmt --- core/invehicle-digital-twin/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/invehicle-digital-twin/src/main.rs b/core/invehicle-digital-twin/src/main.rs index e17b53a3..017af43c 100644 --- a/core/invehicle-digital-twin/src/main.rs +++ b/core/invehicle-digital-twin/src/main.rs @@ -30,8 +30,8 @@ use std::net::SocketAddr; use std::str::FromStr; use std::sync::Arc; use tonic::body::BoxBody; -use tonic::transport::{Body}; use tonic::server::NamedService; +use tonic::transport::Body; use tonic::{Request, Status}; use tower::layer::util::Identity; use tower::Service; From 2c429cc5f150c2557bd00a10ae3d4270d9de94d6 Mon Sep 17 00:00:00 2001 From: William Lyles <26171886+wilyle@users.noreply.github.com> Date: Tue, 20 Feb 2024 13:01:28 -0800 Subject: [PATCH 3/5] revert sdl version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a85e8184..cdb48bac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ parking_lot = "0.12.1" prost = "0.12" prost-types = "0.12" regex = " 1.9.3" -sdl2 = "0.36.0" +sdl2 = "0.35.2" serde = "1.0.160" serde_derive = "1.0.163" serde_json = "^1.0" From 74272c40c724b859f63cfe4bcb3d1c884c282192 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Feb 2024 08:43:55 -0800 Subject: [PATCH 4/5] New notice file (#97) Co-authored-by: Automated Notice Generation Pipeline --- NOTICE | 211 +++------------------------------------------------------ 1 file changed, 11 insertions(+), 200 deletions(-) diff --git a/NOTICE b/NOTICE index 99885429..f1a55515 100644 --- a/NOTICE +++ b/NOTICE @@ -4,7 +4,7 @@ This page lists the licenses of the projects used in cargo-about. ## Overview of licenses -- Apache License 2.0 (39) +- Apache License 2.0 (38) - MIT License (38) - BSD 3-Clause "New" or "Revised" License (4) - Eclipse Public License 1.0 (2) @@ -211,195 +211,6 @@ This page lists the licenses of the projects used in cargo-about. #### Used by -- [openssl-src]( https://github.com/alexcrichton/openssl-src-rs ) 300.2.2+3.2.1 - -#### License - -```text - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - -``` - -### Apache-2.0 (Apache License 2.0) - -#### Used by - - [tinyvec]( https://github.com/Lokathor/tinyvec ) 1.6.0 #### License @@ -1489,7 +1300,7 @@ This page lists the licenses of the projects used in cargo-about. #### Used by -- [crc32fast]( https://github.com/srijs/rust-crc32fast ) 1.3.2 +- [crc32fast]( https://github.com/srijs/rust-crc32fast ) 1.4.0 - [env_logger]( https://github.com/rust-cli/env_logger ) 0.10.2 - [humantime]( https://github.com/tailhook/humantime ) 2.1.0 - [tokio-io-timeout]( https://github.com/sfackler/tokio-io-timeout ) 1.2.0 @@ -1923,9 +1734,9 @@ This page lists the licenses of the projects used in cargo-about. - [serde]( https://github.com/serde-rs/serde ) 1.0.196 - [serde_derive]( https://github.com/serde-rs/serde ) 1.0.196 - [serde_json]( https://github.com/serde-rs/json ) 1.0.113 -- [syn]( https://github.com/dtolnay/syn ) 2.0.48 -- [thiserror]( https://github.com/dtolnay/thiserror ) 1.0.56 -- [thiserror-impl]( https://github.com/dtolnay/thiserror ) 1.0.56 +- [syn]( https://github.com/dtolnay/syn ) 2.0.49 +- [thiserror]( https://github.com/dtolnay/thiserror ) 1.0.57 +- [thiserror-impl]( https://github.com/dtolnay/thiserror ) 1.0.57 - [unicode-ident]( https://github.com/dtolnay/unicode-ident ) 1.0.12 #### License @@ -4060,7 +3871,7 @@ limitations under the License. - [bitflags]( https://github.com/bitflags/bitflags ) 2.4.2 - [blocking]( https://github.com/smol-rs/blocking ) 1.5.1 - [btree-slab]( https://github.com/timothee-haudebourg/btree-slab ) 0.6.1 -- [bumpalo]( https://github.com/fitzgen/bumpalo ) 3.14.0 +- [bumpalo]( https://github.com/fitzgen/bumpalo ) 3.15.0 - [cc]( https://github.com/rust-lang/cc-rs ) 1.0.83 - [cc-traits]( https://github.com/timothee-haudebourg/cc-traits ) 2.0.0 - [cfg-if]( https://github.com/alexcrichton/cfg-if ) 1.0.0 @@ -4089,12 +3900,12 @@ limitations under the License. - [hashbrown]( https://github.com/rust-lang/hashbrown ) 0.12.3 - [hashbrown]( https://github.com/rust-lang/hashbrown ) 0.14.3 - [heck]( https://github.com/withoutboats/heck ) 0.4.1 -- [hermit-abi]( https://github.com/hermitcore/hermit-rs ) 0.3.5 +- [hermit-abi]( https://github.com/hermitcore/hermit-rs ) 0.3.6 - [httparse]( https://github.com/seanmonstar/httparse ) 1.8.0 - [hyper-timeout]( https://github.com/hjr3/hyper-timeout ) 0.4.1 - [idna]( https://github.com/servo/rust-url/ ) 0.5.0 - [indexmap]( https://github.com/bluss/indexmap ) 1.9.3 -- [indexmap]( https://github.com/indexmap-rs/indexmap ) 2.2.2 +- [indexmap]( https://github.com/indexmap-rs/indexmap ) 2.2.3 - [io-lifetimes]( https://github.com/sunfishcode/io-lifetimes ) 1.0.11 - [iref]( https://github.com/timothee-haudebourg/iref ) 3.1.3 - [itertools]( https://github.com/rust-itertools/itertools ) 0.11.0 @@ -4111,7 +3922,7 @@ limitations under the License. - [num_cpus]( https://github.com/seanmonstar/num_cpus ) 1.16.0 - [object]( https://github.com/gimli-rs/object ) 0.32.2 - [once_cell]( https://github.com/matklad/once_cell ) 1.19.0 -- [openssl-src]( https://github.com/alexcrichton/openssl-src-rs ) 300.2.2+3.2.1 +- [openssl-src]( https://github.com/alexcrichton/openssl-src-rs ) 300.2.3+3.2.1 - [parking]( https://github.com/smol-rs/parking ) 2.2.0 - [parking_lot]( https://github.com/Amanieu/parking_lot ) 0.12.1 - [parking_lot_core]( https://github.com/Amanieu/parking_lot ) 0.9.9 @@ -4123,8 +3934,8 @@ limitations under the License. - [pest_meta]( https://github.com/pest-parser/pest ) 2.7.7 - [petgraph]( https://github.com/petgraph/petgraph ) 0.6.4 - [piper]( https://github.com/notgull/piper ) 0.2.1 -- [pkg-config]( https://github.com/rust-lang/pkg-config-rs ) 0.3.29 -- [png]( https://github.com/image-rs/image-png ) 0.17.11 +- [pkg-config]( https://github.com/rust-lang/pkg-config-rs ) 0.3.30 +- [png]( https://github.com/image-rs/image-png ) 0.17.12 - [polling]( https://github.com/smol-rs/polling ) 3.4.0 - [prost]( https://github.com/tokio-rs/prost ) 0.12.3 - [prost-build]( https://github.com/tokio-rs/prost ) 0.12.3 From 75c2788111487da7f2959562f0d6634e84018145 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 08:37:59 -0800 Subject: [PATCH 5/5] New notice file (#100) Co-authored-by: Automated Notice Generation Pipeline --- NOTICE | 637 +++++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 456 insertions(+), 181 deletions(-) diff --git a/NOTICE b/NOTICE index f1a55515..1c41fb53 100644 --- a/NOTICE +++ b/NOTICE @@ -5,9 +5,10 @@ This page lists the licenses of the projects used in cargo-about. ## Overview of licenses - Apache License 2.0 (38) -- MIT License (38) +- MIT License (37) - BSD 3-Clause "New" or "Revised" License (4) - Eclipse Public License 1.0 (2) +- Creative Commons Zero v1.0 Universal (1) - ISC License (1) - Unicode License Agreement - Data Files and Software (2016) (1) @@ -18,6 +19,7 @@ This page lists the licenses of the projects used in cargo-about. #### Used by - [fdeflate]( https://github.com/image-rs/fdeflate ) 0.3.4 +- [image]( https://github.com/image-rs/image ) 0.24.9 - [miniz_oxide]( https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide ) 0.7.2 - [pin-project]( https://github.com/taiki-e/pin-project ) 1.1.4 - [pin-project-internal]( https://github.com/taiki-e/pin-project ) 1.1.4 @@ -428,21 +430,21 @@ This page lists the licenses of the projects used in cargo-about. - [windows-sys]( https://github.com/microsoft/windows-rs ) 0.48.0 - [windows-sys]( https://github.com/microsoft/windows-rs ) 0.52.0 - [windows-targets]( https://github.com/microsoft/windows-rs ) 0.48.5 -- [windows-targets]( https://github.com/microsoft/windows-rs ) 0.52.0 +- [windows-targets]( https://github.com/microsoft/windows-rs ) 0.52.3 - [windows_aarch64_gnullvm]( https://github.com/microsoft/windows-rs ) 0.48.5 -- [windows_aarch64_gnullvm]( https://github.com/microsoft/windows-rs ) 0.52.0 +- [windows_aarch64_gnullvm]( https://github.com/microsoft/windows-rs ) 0.52.3 - [windows_aarch64_msvc]( https://github.com/microsoft/windows-rs ) 0.48.5 -- [windows_aarch64_msvc]( https://github.com/microsoft/windows-rs ) 0.52.0 +- [windows_aarch64_msvc]( https://github.com/microsoft/windows-rs ) 0.52.3 - [windows_i686_gnu]( https://github.com/microsoft/windows-rs ) 0.48.5 -- [windows_i686_gnu]( https://github.com/microsoft/windows-rs ) 0.52.0 +- [windows_i686_gnu]( https://github.com/microsoft/windows-rs ) 0.52.3 - [windows_i686_msvc]( https://github.com/microsoft/windows-rs ) 0.48.5 -- [windows_i686_msvc]( https://github.com/microsoft/windows-rs ) 0.52.0 +- [windows_i686_msvc]( https://github.com/microsoft/windows-rs ) 0.52.3 - [windows_x86_64_gnu]( https://github.com/microsoft/windows-rs ) 0.48.5 -- [windows_x86_64_gnu]( https://github.com/microsoft/windows-rs ) 0.52.0 +- [windows_x86_64_gnu]( https://github.com/microsoft/windows-rs ) 0.52.3 - [windows_x86_64_gnullvm]( https://github.com/microsoft/windows-rs ) 0.48.5 -- [windows_x86_64_gnullvm]( https://github.com/microsoft/windows-rs ) 0.52.0 +- [windows_x86_64_gnullvm]( https://github.com/microsoft/windows-rs ) 0.52.3 - [windows_x86_64_msvc]( https://github.com/microsoft/windows-rs ) 0.48.5 -- [windows_x86_64_msvc]( https://github.com/microsoft/windows-rs ) 0.52.0 +- [windows_x86_64_msvc]( https://github.com/microsoft/windows-rs ) 0.52.3 #### License @@ -1086,6 +1088,7 @@ This page lists the licenses of the projects used in cargo-about. #### Used by +- [anstyle-parse]( https://github.com/rust-cli/anstyle.git ) 0.2.3 - [bit_field]( https://github.com/phil-opp/rust-bit-field ) 0.10.2 - [winapi]( https://github.com/retep998/winapi-rs ) 0.3.9 @@ -1300,10 +1303,20 @@ This page lists the licenses of the projects used in cargo-about. #### Used by +- [anstream]( https://github.com/rust-cli/anstyle.git ) 0.6.12 +- [anstyle]( https://github.com/rust-cli/anstyle.git ) 1.0.6 +- [anstyle-query]( https://github.com/rust-cli/anstyle ) 1.0.2 +- [anstyle-wincon]( https://github.com/rust-cli/anstyle.git ) 3.0.2 +- [colorchoice]( https://github.com/rust-cli/anstyle ) 1.0.0 - [crc32fast]( https://github.com/srijs/rust-crc32fast ) 1.4.0 -- [env_logger]( https://github.com/rust-cli/env_logger ) 0.10.2 +- [env_filter]( https://github.com/rust-cli/env_logger ) 0.1.0 +- [env_logger]( https://github.com/rust-cli/env_logger ) 0.11.2 - [humantime]( https://github.com/tailhook/humantime ) 2.1.0 +- [serde_spanned]( https://github.com/toml-rs/toml ) 0.6.5 - [tokio-io-timeout]( https://github.com/sfackler/tokio-io-timeout ) 1.2.0 +- [toml]( https://github.com/toml-rs/toml ) 0.8.10 +- [toml_datetime]( https://github.com/toml-rs/toml ) 0.6.5 +- [toml_edit]( https://github.com/toml-rs/toml ) 0.22.6 #### License @@ -1720,7 +1733,194 @@ This page lists the licenses of the projects used in cargo-about. #### Used by -- [anyhow]( https://github.com/dtolnay/anyhow ) 1.0.79 +- [dlv-list]( https://github.com/sgodwincs/dlv-list-rs ) 0.5.2 + +#### License + +```text + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS +``` + +### Apache-2.0 (Apache License 2.0) + +#### Used by + +- [anyhow]( https://github.com/dtolnay/anyhow ) 1.0.80 - [async-trait]( https://github.com/dtolnay/async-trait ) 0.1.77 - [dyn-clone]( https://github.com/dtolnay/dyn-clone ) 1.0.16 - [indoc]( https://github.com/dtolnay/indoc ) 2.0.4 @@ -1730,14 +1930,15 @@ This page lists the licenses of the projects used in cargo-about. - [proc-macro2]( https://github.com/dtolnay/proc-macro2 ) 1.0.78 - [quote]( https://github.com/dtolnay/quote ) 1.0.35 - [rustversion]( https://github.com/dtolnay/rustversion ) 1.0.14 -- [ryu]( https://github.com/dtolnay/ryu ) 1.0.16 -- [serde]( https://github.com/serde-rs/serde ) 1.0.196 -- [serde_derive]( https://github.com/serde-rs/serde ) 1.0.196 -- [serde_json]( https://github.com/serde-rs/json ) 1.0.113 -- [syn]( https://github.com/dtolnay/syn ) 2.0.49 +- [ryu]( https://github.com/dtolnay/ryu ) 1.0.17 +- [serde]( https://github.com/serde-rs/serde ) 1.0.197 +- [serde_derive]( https://github.com/serde-rs/serde ) 1.0.197 +- [serde_json]( https://github.com/serde-rs/json ) 1.0.114 +- [syn]( https://github.com/dtolnay/syn ) 2.0.50 - [thiserror]( https://github.com/dtolnay/thiserror ) 1.0.57 - [thiserror-impl]( https://github.com/dtolnay/thiserror ) 1.0.57 - [unicode-ident]( https://github.com/dtolnay/unicode-ident ) 1.0.12 +- [utf8parse]( https://github.com/alacritty/vte ) 0.2.1 #### License @@ -2359,7 +2560,7 @@ limitations under the License. #### Used by -- [config]( https://github.com/mehcode/config-rs ) 0.13.4 +- [config]( https://github.com/mehcode/config-rs ) 0.14.0 #### License @@ -3636,7 +3837,7 @@ limitations under the License. #### Used by -- [gif]( https://github.com/image-rs/image-gif ) 0.12.0 +- [gif]( https://github.com/image-rs/image-gif ) 0.13.1 - [hex_fmt]( https://github.com/poanetwork/hex_fmt ) 0.3.0 - [weezl]( https://github.com/image-rs/lzw ) 0.1.8 @@ -3851,7 +4052,6 @@ limitations under the License. #### Used by - [addr2line]( https://github.com/gimli-rs/addr2line ) 0.21.0 -- [ahash]( https://github.com/tkaitchuck/ahash ) 0.7.8 - [async-channel]( https://github.com/smol-rs/async-channel ) 1.9.0 - [async-channel]( https://github.com/smol-rs/async-channel ) 2.2.0 - [async-executor]( https://github.com/smol-rs/async-executor ) 1.8.0 @@ -3865,18 +4065,19 @@ limitations under the License. - [atomic-waker]( https://github.com/smol-rs/atomic-waker ) 1.1.2 - [autocfg]( https://github.com/cuviper/autocfg ) 1.1.0 - [backtrace]( https://github.com/rust-lang/backtrace-rs ) 0.3.69 -- [base64]( https://github.com/marshallpierce/rust-base64 ) 0.13.1 - [base64]( https://github.com/marshallpierce/rust-base64 ) 0.21.7 - [bitflags]( https://github.com/bitflags/bitflags ) 1.3.2 - [bitflags]( https://github.com/bitflags/bitflags ) 2.4.2 - [blocking]( https://github.com/smol-rs/blocking ) 1.5.1 - [btree-slab]( https://github.com/timothee-haudebourg/btree-slab ) 0.6.1 -- [bumpalo]( https://github.com/fitzgen/bumpalo ) 3.15.0 -- [cc]( https://github.com/rust-lang/cc-rs ) 1.0.83 +- [bumpalo]( https://github.com/fitzgen/bumpalo ) 3.15.3 +- [cc]( https://github.com/rust-lang/cc-rs ) 1.0.87 - [cc-traits]( https://github.com/timothee-haudebourg/cc-traits ) 2.0.0 - [cfg-if]( https://github.com/alexcrichton/cfg-if ) 1.0.0 - [cmake]( https://github.com/rust-lang/cmake-rs ) 0.1.50 - [concurrent-queue]( https://github.com/smol-rs/concurrent-queue ) 2.4.0 +- [const-random]( https://github.com/tkaitchuck/constrandom ) 0.1.17 +- [const-random-macro]( https://github.com/tkaitchuck/constrandom ) 0.1.16 - [crossbeam-channel]( https://github.com/crossbeam-rs/crossbeam ) 0.5.11 - [crossbeam-deque]( https://github.com/crossbeam-rs/crossbeam ) 0.8.5 - [crossbeam-epoch]( https://github.com/crossbeam-rs/crossbeam ) 0.9.18 @@ -3885,7 +4086,7 @@ limitations under the License. - [equivalent]( https://github.com/cuviper/equivalent ) 1.0.1 - [event-listener]( https://github.com/smol-rs/event-listener ) 2.5.3 - [event-listener]( https://github.com/smol-rs/event-listener ) 4.0.3 -- [event-listener]( https://github.com/smol-rs/event-listener ) 5.0.0 +- [event-listener]( https://github.com/smol-rs/event-listener ) 5.1.0 - [event-listener-strategy]( https://github.com/smol-rs/event-listener ) 0.4.0 - [event-listener-strategy]( https://github.com/smol-rs/event-listener ) 0.5.0 - [fastrand]( https://github.com/smol-rs/fastrand ) 1.9.0 @@ -3896,18 +4097,20 @@ limitations under the License. - [form_urlencoded]( https://github.com/servo/rust-url ) 1.2.1 - [futures-lite]( https://github.com/smol-rs/futures-lite ) 1.13.0 - [futures-lite]( https://github.com/smol-rs/futures-lite ) 2.2.0 +- [futures-timer]( https://github.com/async-rs/futures-timer ) 3.0.3 - [gimli]( https://github.com/gimli-rs/gimli ) 0.28.1 - [hashbrown]( https://github.com/rust-lang/hashbrown ) 0.12.3 +- [hashbrown]( https://github.com/rust-lang/hashbrown ) 0.13.2 - [hashbrown]( https://github.com/rust-lang/hashbrown ) 0.14.3 - [heck]( https://github.com/withoutboats/heck ) 0.4.1 -- [hermit-abi]( https://github.com/hermitcore/hermit-rs ) 0.3.6 +- [hermit-abi]( https://github.com/hermit-os/hermit-rs ) 0.3.8 - [httparse]( https://github.com/seanmonstar/httparse ) 1.8.0 - [hyper-timeout]( https://github.com/hjr3/hyper-timeout ) 0.4.1 - [idna]( https://github.com/servo/rust-url/ ) 0.5.0 - [indexmap]( https://github.com/bluss/indexmap ) 1.9.3 - [indexmap]( https://github.com/indexmap-rs/indexmap ) 2.2.3 - [io-lifetimes]( https://github.com/sunfishcode/io-lifetimes ) 1.0.11 -- [iref]( https://github.com/timothee-haudebourg/iref ) 3.1.3 +- [iref]( https://github.com/timothee-haudebourg/iref ) 3.1.4 - [itertools]( https://github.com/rust-itertools/itertools ) 0.11.0 - [jpeg-decoder]( https://github.com/image-rs/jpeg-decoder ) 0.3.1 - [js-sys]( https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys ) 0.3.68 @@ -3935,8 +4138,8 @@ limitations under the License. - [petgraph]( https://github.com/petgraph/petgraph ) 0.6.4 - [piper]( https://github.com/notgull/piper ) 0.2.1 - [pkg-config]( https://github.com/rust-lang/pkg-config-rs ) 0.3.30 -- [png]( https://github.com/image-rs/image-png ) 0.17.12 -- [polling]( https://github.com/smol-rs/polling ) 3.4.0 +- [png]( https://github.com/image-rs/image-png ) 0.17.13 +- [polling]( https://github.com/smol-rs/polling ) 3.5.0 - [prost]( https://github.com/tokio-rs/prost ) 0.12.3 - [prost-build]( https://github.com/tokio-rs/prost ) 0.12.3 - [prost-derive]( https://github.com/tokio-rs/prost ) 0.12.3 @@ -3946,7 +4149,7 @@ limitations under the License. - [regex]( https://github.com/rust-lang/regex ) 1.10.3 - [regex-automata]( https://github.com/rust-lang/regex/tree/master/regex-automata ) 0.4.5 - [regex-syntax]( https://github.com/rust-lang/regex/tree/master/regex-syntax ) 0.8.2 -- [ron]( https://github.com/ron-rs/ron ) 0.7.1 +- [ron]( https://github.com/ron-rs/ron ) 0.8.1 - [rustc-demangle]( https://github.com/alexcrichton/rustc-demangle ) 0.1.23 - [rustix]( https://github.com/bytecodealliance/rustix ) 0.37.27 - [rustix]( https://github.com/bytecodealliance/rustix ) 0.38.31 @@ -3954,13 +4157,13 @@ limitations under the License. - [signal-hook-registry]( https://github.com/vorner/signal-hook ) 1.4.1 - [smallvec]( https://github.com/servo/rust-smallvec ) 1.13.1 - [socket2]( https://github.com/rust-lang/socket2 ) 0.4.10 -- [socket2]( https://github.com/rust-lang/socket2 ) 0.5.5 +- [socket2]( https://github.com/rust-lang/socket2 ) 0.5.6 - [syn]( https://github.com/dtolnay/syn ) 1.0.109 - [tempfile]( https://github.com/Stebalien/tempfile ) 3.10.0 -- [toml]( https://github.com/toml-rs/toml ) 0.5.11 - [ucd-trie]( https://github.com/BurntSushi/ucd-generate ) 0.1.6 - [unicode-bidi]( https://github.com/servo/unicode-bidi ) 0.3.15 -- [unicode-normalization]( https://github.com/unicode-rs/unicode-normalization ) 0.1.22 +- [unicode-normalization]( https://github.com/unicode-rs/unicode-normalization ) 0.1.23 +- [unicode-segmentation]( https://github.com/unicode-rs/unicode-segmentation ) 1.11.0 - [url]( https://github.com/servo/rust-url ) 2.5.0 - [utf8-decode]( https://github.com/timothee-haudebourg/utf8-decode ) 1.0.1 - [uuid]( https://github.com/uuid-rs/uuid ) 1.7.0 @@ -5649,7 +5852,6 @@ limitations under the License. #### Used by -- [futures-timer]( https://github.com/async-rs/futures-timer ) 3.0.2 - [polling]( https://github.com/smol-rs/polling ) 2.8.0 #### License @@ -6712,25 +6914,6 @@ limitations under the License. #### Used by -- [unicode-normalization]( https://github.com/unicode-rs/unicode-normalization ) 0.1.22 - -#### License - -```text -Licensed under the Apache License, Version 2.0 - or the MIT -license , -at your option. All files in the project carrying such -notice may not be copied, modified, or distributed except -according to those terms. - -``` - -### Apache-2.0 (Apache License 2.0) - -#### Used by - - [typenum]( https://github.com/paholg/typenum ) 1.17.0 #### License @@ -6942,6 +7125,139 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ``` +### CC0-1.0 (Creative Commons Zero v1.0 Universal) + +#### Used by + +- [tiny-keccak]( https://crates.io/crates/tiny-keccak ) 2.0.2 + +#### License + +```text +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. + +``` + ### EPL-1.0 (Eclipse Public License 1.0) #### Used by @@ -7138,7 +7454,7 @@ PERFORMANCE OF THIS SOFTWARE. #### Used by -- [openssl-sys]( https://github.com/sfackler/rust-openssl ) 0.9.99 +- [openssl-sys]( https://github.com/sfackler/rust-openssl ) 0.9.101 #### License @@ -7758,8 +8074,8 @@ DEALINGS IN THE SOFTWARE. #### Used by -- [tonic]( https://github.com/hyperium/tonic ) 0.10.2 -- [tonic-build]( https://github.com/hyperium/tonic ) 0.10.2 +- [tonic]( https://github.com/hyperium/tonic ) 0.11.0 +- [tonic-build]( https://github.com/hyperium/tonic ) 0.11.0 #### License @@ -7940,8 +8256,41 @@ SOFTWARE. #### Used by -- [strum]( https://github.com/Peternator7/strum ) 0.25.0 -- [strum_macros]( https://github.com/Peternator7/strum ) 0.25.3 +- [ordered-multimap]( https://github.com/sgodwincs/ordered-multimap-rs ) 0.6.0 + +#### License + +```text +MIT License + +Copyright (c) 2018 sgodwincs + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + +``` + +### MIT (MIT License) + +#### Used by + +- [strum]( https://github.com/Peternator7/strum ) 0.26.1 +- [strum_macros]( https://github.com/Peternator7/strum ) 0.26.1 #### License @@ -7974,6 +8323,39 @@ SOFTWARE. #### Used by +- [convert_case]( https://github.com/rutrum/convert-case ) 0.6.0 + +#### License + +```text +MIT License + +Copyright (c) 2020 David Purdum + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. + +``` + +### MIT (MIT License) + +#### Used by + - [matchit]( https://github.com/ibraheemdev/matchit ) 0.7.3 #### License @@ -8077,68 +8459,29 @@ SOFTWARE. #### Used by -- [dlv-list]( https://github.com/sgodwincs/dlv-list-rs ) 0.3.0 -- [ordered-multimap]( https://github.com/sgodwincs/ordered-multimap-rs ) 0.4.3 - -#### License - -```text -MIT License - -Copyright (c) 2018 sgodwincs - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. - -``` - -### MIT (MIT License) - -#### Used by - -- [is-terminal]( https://github.com/sunfishcode/is-terminal ) 0.4.12 +- [winnow]( https://github.com/winnow-rs/winnow ) 0.6.2 #### License ```text -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: +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: -The above copyright notice and this permission notice -shall be included in all copies or substantial portions -of the Software. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -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. +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. ``` @@ -8243,39 +8586,7 @@ SOFTWARE. #### Used by -- [image]( https://github.com/image-rs/image ) 0.24.8 - -#### License - -```text -The MIT License (MIT) - -Copyright (c) 2014 PistonDevelopers - -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: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -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. -``` - -### MIT (MIT License) - -#### Used by - -- [rust-ini]( https://github.com/zonyitoo/rust-ini ) 0.18.0 +- [rust-ini]( https://github.com/zonyitoo/rust-ini ) 0.19.0 #### License @@ -8299,7 +8610,6 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI - [aho-corasick]( https://github.com/BurntSushi/aho-corasick ) 1.1.2 - [byteorder]( https://github.com/BurntSushi/byteorder ) 1.5.0 - [memchr]( https://github.com/BurntSushi/memchr ) 2.7.1 -- [termcolor]( https://github.com/BurntSushi/termcolor ) 1.4.1 #### License @@ -8365,39 +8675,6 @@ SOFTWARE. #### Used by -- [winapi-util]( https://github.com/BurntSushi/winapi-util ) 0.1.6 - -#### License - -```text -The MIT License (MIT) - -Copyright (c) 2017 Andrew Gallant - -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: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -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. - -``` - -### MIT (MIT License) - -#### Used by - - [generic-array]( https://github.com/fizyk20/generic-array.git ) 0.14.7 #### License @@ -8433,8 +8710,6 @@ SOFTWARE. - [aho-corasick]( https://github.com/BurntSushi/aho-corasick ) 1.1.2 - [byteorder]( https://github.com/BurntSushi/byteorder ) 1.5.0 - [memchr]( https://github.com/BurntSushi/memchr ) 2.7.1 -- [termcolor]( https://github.com/BurntSushi/termcolor ) 1.4.1 -- [winapi-util]( https://github.com/BurntSushi/winapi-util ) 0.1.6 #### License