You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2023/03/01 15:36:59 UTC

[skywalking-rust] branch master updated: Add sub components licenses in dist material. (#55)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-rust.git


The following commit(s) were added to refs/heads/master by this push:
     new 650a884  Add sub components licenses in dist material. (#55)
650a884 is described below

commit 650a88465a462e3fceb5e7de8268a231626fbe93
Author: jmjoy <jm...@apache.org>
AuthorDate: Wed Mar 1 23:36:52 2023 +0800

    Add sub components licenses in dist material. (#55)
---
 .github/licenserc.yaml                             |   2 +
 .github/workflows/ci.yaml                          |  20 +-
 NOTICE                                             |   2 +-
 dist-material/LICENSE                              | 389 +++++++++++++++++++++
 dist-material/LICENSE.tpl                          |  26 ++
 NOTICE => dist-material/NOTICE                     |   2 +-
 .../licenses/LICENSE-async-stream-impl.txt         |  51 +++
 dist-material/licenses/LICENSE-async-stream.txt    |  51 +++
 dist-material/licenses/LICENSE-autotools.txt       |  25 ++
 dist-material/licenses/LICENSE-axum-core.txt       |   7 +
 dist-material/licenses/LICENSE-axum.txt            |  25 ++
 dist-material/licenses/LICENSE-bytes.txt           |  25 ++
 dist-material/licenses/LICENSE-h2.txt              |  25 ++
 dist-material/licenses/LICENSE-hostname.txt        |  22 ++
 dist-material/licenses/LICENSE-http-body.txt       |  25 ++
 .../licenses/LICENSE-http-range-header.txt         |  21 ++
 dist-material/licenses/LICENSE-hyper.txt           |  19 +
 dist-material/licenses/LICENSE-instant.txt         |  27 ++
 dist-material/licenses/LICENSE-matchit.txt         |  53 +++
 dist-material/licenses/LICENSE-memchr.txt          |  21 ++
 dist-material/licenses/LICENSE-mio.txt             |  19 +
 dist-material/licenses/LICENSE-nom.txt             |  20 ++
 dist-material/licenses/LICENSE-redox_syscall.txt   |  22 ++
 dist-material/licenses/LICENSE-slab.txt            |  25 ++
 dist-material/licenses/LICENSE-systemstat.txt      |  24 ++
 dist-material/licenses/LICENSE-tokio-macros.txt    |  47 +++
 dist-material/licenses/LICENSE-tokio-stream.txt    |  25 ++
 dist-material/licenses/LICENSE-tokio-util.txt      |  25 ++
 dist-material/licenses/LICENSE-tokio.txt           |  25 ++
 dist-material/licenses/LICENSE-tonic-build.txt     |  19 +
 dist-material/licenses/LICENSE-tonic.txt           |  19 +
 dist-material/licenses/LICENSE-tower-http.txt      |  25 ++
 dist-material/licenses/LICENSE-tower-layer.txt     |  25 ++
 dist-material/licenses/LICENSE-tower-service.txt   |  25 ++
 dist-material/licenses/LICENSE-tower.txt           |  25 ++
 .../licenses/LICENSE-tracing-attributes.txt        |  25 ++
 dist-material/licenses/LICENSE-tracing-core.txt    |  25 ++
 dist-material/licenses/LICENSE-tracing-futures.txt |  25 ++
 dist-material/licenses/LICENSE-tracing.txt         |  25 ++
 dist-material/licenses/LICENSE-try-lock.txt        |  21 ++
 dist-material/licenses/LICENSE-want.txt            |  20 ++
 dist-material/licenses/LICENSE-which.txt           |  19 +
 e2e/docker/Dockerfile                              |   2 +-
 rust-toolchain.toml                                |   2 +-
 44 files changed, 1365 insertions(+), 7 deletions(-)

diff --git a/.github/licenserc.yaml b/.github/licenserc.yaml
index e9f23ff..a9f4024 100644
--- a/.github/licenserc.yaml
+++ b/.github/licenserc.yaml
@@ -31,6 +31,8 @@ header:
     - 'vendor'
     - '.cargo'
     - '.vscode'
+    - 'dist-material'
+    - 'requirements.txt'
 
   comment: on-failure
 
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 1d608ce..7d891aa 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -49,14 +49,28 @@ jobs:
       - uses: actions/checkout@v2
         with:
           submodules: 'recursive'
+      - name: Install Cargo nightly
+        run: rustup toolchain install nightly
+      - name: Cargo minimal versions
+        run: cargo +nightly -Z minimal-versions generate-lockfile
       - name: Check License Header
-        uses: apache/skywalking-eyes/header/@501a28d2fb4a9b962661987e50cf0219631b32ff
+        uses: apache/skywalking-eyes/header/@d299844e334855087f18ae1fe3c81ae8d22bc282
         with:
           config: .github/licenserc.yaml
       - name: Check Dependencies License
-        uses: apache/skywalking-eyes/dependency/@501a28d2fb4a9b962661987e50cf0219631b32ff
+        uses: apache/skywalking-eyes/dependency/@d299844e334855087f18ae1fe3c81ae8d22bc282
         with:
           config: .github/licenserc.yaml
+      - name: Check Dependencies Licenses Summary
+        run: |
+          go install github.com/apache/skywalking-eyes/cmd/license-eye@d299844e334855087f18ae1fe3c81ae8d22bc282
+          license-eye dependency resolve --summary ./dist-material/LICENSE.tpl -c .github/licenserc.yaml || exit 1
+          if [ ! -z "$(git diff -U0 ./dist-material/LICENSE)" ]; then
+            echo "LICENSE file is not updated correctly"
+            git diff -U0 ./dist-material/LICENSE
+            exit 1
+          fi
+
 
   fmt:
     runs-on: ubuntu-20.04
@@ -87,7 +101,7 @@ jobs:
         run: sudo apt-get install -y protobuf-compiler=3.6.1.3-2ubuntu5
         if: ${{ matrix.features != '--features vendored' }}
       - name: Install Rust toolchain
-        run: rustup toolchain install stable --component clippy
+        run: rustup toolchain install 1.63.0 --component clippy
       - name: Run check
         run: cargo check --workspace --release ${{ matrix.features }}
       - name: Run clippy
diff --git a/NOTICE b/NOTICE
index cf67c8d..c68c699 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache SkyWalking
-Copyright 2017-2022 The Apache Software Foundation
+Copyright 2017-2023 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/dist-material/LICENSE b/dist-material/LICENSE
new file mode 100644
index 0000000..c4dff34
--- /dev/null
+++ b/dist-material/LICENSE
@@ -0,0 +1,389 @@
+                                 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.
+
+
+=======================================================================
+Apache SkyWalking Subcomponents:
+
+The Apache SkyWalking project contains subcomponents with separate copyright
+notices and license terms. Your use of the source code for the these
+subcomponents is subject to the terms and conditions of the following
+licenses.
+========================================================================
+
+
+========================================================================
+Apache-2.0 licenses
+========================================================================
+The following components are provided under the Apache-2.0 License. See project link for details.
+The text of each license is the standard Apache 2.0 license.
+    https://crates.io/crates/bytesize/1.1.0 1.1.0 Apache-2.0
+    https://crates.io/crates/e2e/0.0.0 0.0.0 Apache-2.0
+    https://crates.io/crates/prost/0.11.0 0.11.0 Apache-2.0
+    https://crates.io/crates/prost-build/0.11.0 0.11.0 Apache-2.0
+    https://crates.io/crates/prost-derive/0.11.0 0.11.0 Apache-2.0
+    https://crates.io/crates/prost-types/0.11.0 0.11.0 Apache-2.0
+    https://crates.io/crates/protobuf-src/1.0.5+3.19.3 1.0.5+3.19.3 Apache-2.0
+    https://crates.io/crates/skywalking/0.5.0 0.5.0 Apache-2.0
+    https://crates.io/crates/sync_wrapper/0.1.1 0.1.1 Apache-2.0
+
+========================================================================
+Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT licenses
+========================================================================
+The following components are provided under the Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT License. See project link for details.
+The text of each license is also included in licenses/LICENSE-[project].txt.
+
+    https://crates.io/crates/wasi/0.9.0+wasi-snapshot-preview1 0.9.0+wasi-snapshot-preview1 Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT
+    https://crates.io/crates/wasi/0.11.0+wasi-snapshot-preview1 0.11.0+wasi-snapshot-preview1 Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT
+
+========================================================================
+Apache-2.0 OR MIT licenses
+========================================================================
+The following components are provided under the Apache-2.0 OR MIT License. See project link for details.
+The text of each license is also included in licenses/LICENSE-[project].txt.
+
+    https://crates.io/crates/anyhow/1.0.1 1.0.1 Apache-2.0 OR MIT
+    https://crates.io/crates/arc-swap/0.4.0 0.4.0 Apache-2.0 OR MIT
+    https://crates.io/crates/async-trait/0.1.43 0.1.43 Apache-2.0 OR MIT
+    https://crates.io/crates/autocfg/1.1.0 1.1.0 Apache-2.0 OR MIT
+    https://crates.io/crates/base64/0.13.0 0.13.0 Apache-2.0 OR MIT
+    https://crates.io/crates/bitflags/1.3.1 1.3.1 Apache-2.0 OR MIT
+    https://crates.io/crates/cc/1.0.0 1.0.0 Apache-2.0 OR MIT
+    https://crates.io/crates/cfg-if/0.1.2 0.1.2 Apache-2.0 OR MIT
+    https://crates.io/crates/cfg-if/1.0.0 1.0.0 Apache-2.0 OR MIT
+    https://crates.io/crates/either/1.0.0 1.0.0 Apache-2.0 OR MIT
+    https://crates.io/crates/fixedbitset/0.4.0 0.4.0 Apache-2.0 OR MIT
+    https://crates.io/crates/fnv/1.0.5 1.0.5 Apache-2.0 OR MIT
+    https://crates.io/crates/futures-channel/0.3.0 0.3.0 Apache-2.0 OR MIT
+    https://crates.io/crates/futures-core/0.3.21 0.3.21 Apache-2.0 OR MIT
+    https://crates.io/crates/futures-macro/0.3.21 0.3.21 Apache-2.0 OR MIT
+    https://crates.io/crates/futures-sink/0.3.0 0.3.0 Apache-2.0 OR MIT
+    https://crates.io/crates/futures-task/0.3.21 0.3.21 Apache-2.0 OR MIT
+    https://crates.io/crates/futures-util/0.3.21 0.3.21 Apache-2.0 OR MIT
+    https://crates.io/crates/getrandom/0.2.0 0.2.0 Apache-2.0 OR MIT
+    https://crates.io/crates/hashbrown/0.9.1 0.9.1 Apache-2.0 OR MIT
+    https://crates.io/crates/heck/0.3.0 0.3.0 Apache-2.0 OR MIT
+    https://crates.io/crates/heck/0.4.0 0.4.0 Apache-2.0 OR MIT
+    https://crates.io/crates/http/0.2.5 0.2.5 Apache-2.0 OR MIT
+    https://crates.io/crates/httparse/1.5.1 1.5.1 Apache-2.0 OR MIT
+    https://crates.io/crates/httpdate/1.0.0 1.0.0 Apache-2.0 OR MIT
+    https://crates.io/crates/hyper-timeout/0.4.0 0.4.0 Apache-2.0 OR MIT
+    https://crates.io/crates/indexmap/1.6.2 1.6.2 Apache-2.0 OR MIT
+    https://crates.io/crates/itertools/0.10.0 0.10.0 Apache-2.0 OR MIT
+    https://crates.io/crates/itoa/0.4.1 0.4.1 Apache-2.0 OR MIT
+    https://crates.io/crates/itoa/1.0.1 1.0.1 Apache-2.0 OR MIT
+    https://crates.io/crates/lazy_static/1.4.0 1.4.0 Apache-2.0 OR MIT
+    https://crates.io/crates/libc/0.2.114 0.2.114 Apache-2.0 OR MIT
+    https://crates.io/crates/lock_api/0.4.6 0.4.6 Apache-2.0 OR MIT
+    https://crates.io/crates/log/0.4.17 0.4.17 Apache-2.0 OR MIT
+    https://crates.io/crates/match_cfg/0.1.0 0.1.0 Apache-2.0 OR MIT
+    https://crates.io/crates/mime/0.3.16 0.3.16 Apache-2.0 OR MIT
+    https://crates.io/crates/minimal-lexical/0.1.2 0.1.2 Apache-2.0 OR MIT
+    https://crates.io/crates/miow/0.3.6 0.3.6 Apache-2.0 OR MIT
+    https://crates.io/crates/multimap/0.8.0 0.8.0 Apache-2.0 OR MIT
+    https://crates.io/crates/ntapi/0.3.0 0.3.0 Apache-2.0 OR MIT
+    https://crates.io/crates/num_cpus/1.8.0 1.8.0 Apache-2.0 OR MIT
+    https://crates.io/crates/num_threads/0.1.2 0.1.2 Apache-2.0 OR MIT
+    https://crates.io/crates/once_cell/1.14.0 1.14.0 Apache-2.0 OR MIT
+    https://crates.io/crates/parking_lot/0.12.1 0.12.1 Apache-2.0 OR MIT
+    https://crates.io/crates/parking_lot_core/0.9.0 0.9.0 Apache-2.0 OR MIT
+    https://crates.io/crates/percent-encoding/2.1.0 2.1.0 Apache-2.0 OR MIT
+    https://crates.io/crates/petgraph/0.6.0 0.6.0 Apache-2.0 OR MIT
+    https://crates.io/crates/pin-project/0.4.29 0.4.29 Apache-2.0 OR MIT
+    https://crates.io/crates/pin-project/1.0.2 1.0.2 Apache-2.0 OR MIT
+    https://crates.io/crates/pin-project-internal/0.4.29 0.4.29 Apache-2.0 OR MIT
+    https://crates.io/crates/pin-project-internal/1.0.2 1.0.2 Apache-2.0 OR MIT
+    https://crates.io/crates/pin-project-lite/0.2.9 0.2.9 Apache-2.0 OR MIT
+    https://crates.io/crates/pin-utils/0.1.0 0.1.0 Apache-2.0 OR MIT
+    https://crates.io/crates/portable-atomic/0.3.13 0.3.13 Apache-2.0 OR MIT
+    https://crates.io/crates/ppv-lite86/0.2.8 0.2.8 Apache-2.0 OR MIT
+    https://crates.io/crates/prettyplease/0.1.0 0.1.0 Apache-2.0 OR MIT
+    https://crates.io/crates/proc-macro2/1.0.32 1.0.32 Apache-2.0 OR MIT
+    https://crates.io/crates/quote/1.0.0 1.0.0 Apache-2.0 OR MIT
+    https://crates.io/crates/rand/0.4.1 0.4.1 Apache-2.0 OR MIT
+    https://crates.io/crates/rand/0.8.0 0.8.0 Apache-2.0 OR MIT
+    https://crates.io/crates/rand_chacha/0.3.0 0.3.0 Apache-2.0 OR MIT
+    https://crates.io/crates/rand_core/0.6.2 0.6.2 Apache-2.0 OR MIT
+    https://crates.io/crates/rand_hc/0.3.0 0.3.0 Apache-2.0 OR MIT
+    https://crates.io/crates/regex/1.5.5 1.5.5 Apache-2.0 OR MIT
+    https://crates.io/crates/regex-syntax/0.6.25 0.6.25 Apache-2.0 OR MIT
+    https://crates.io/crates/remove_dir_all/0.5.0 0.5.0 Apache-2.0 OR MIT
+    https://crates.io/crates/scopeguard/1.1.0 1.1.0 Apache-2.0 OR MIT
+    https://crates.io/crates/serde/1.0.143 1.0.143 Apache-2.0 OR MIT
+    https://crates.io/crates/serde_derive/1.0.143 1.0.143 Apache-2.0 OR MIT
+    https://crates.io/crates/signal-hook-registry/1.1.1 1.1.1 Apache-2.0 OR MIT
+    https://crates.io/crates/smallvec/1.6.1 1.6.1 Apache-2.0 OR MIT
+    https://crates.io/crates/socket2/0.3.17 0.3.17 Apache-2.0 OR MIT
+    https://crates.io/crates/socket2/0.4.4 0.4.4 Apache-2.0 OR MIT
+    https://crates.io/crates/structopt/0.3.0 0.3.0 Apache-2.0 OR MIT
+    https://crates.io/crates/structopt-derive/0.3.0 0.3.0 Apache-2.0 OR MIT
+    https://crates.io/crates/syn/1.0.90 1.0.90 Apache-2.0 OR MIT
+    https://crates.io/crates/tempfile/3.0.2 3.0.2 Apache-2.0 OR MIT
+    https://crates.io/crates/thiserror/1.0.32 1.0.32 Apache-2.0 OR MIT
+    https://crates.io/crates/thiserror-impl/1.0.32 1.0.32 Apache-2.0 OR MIT
+    https://crates.io/crates/time/0.3.9 0.3.9 Apache-2.0 OR MIT
+    https://crates.io/crates/tokio-io-timeout/1.0.1 1.0.1 Apache-2.0 OR MIT
+    https://crates.io/crates/unicode-segmentation/1.2.0 1.2.0 Apache-2.0 OR MIT
+    https://crates.io/crates/unicode-width/0.1.4 0.1.4 Apache-2.0 OR MIT
+    https://crates.io/crates/unicode-xid/0.2.0 0.2.0 Apache-2.0 OR MIT
+    https://crates.io/crates/uuid/1.1.2 1.1.2 Apache-2.0 OR MIT
+    https://crates.io/crates/vec_map/0.8.0 0.8.0 Apache-2.0 OR MIT
+    https://crates.io/crates/version_check/0.9.0 0.9.0 Apache-2.0 OR MIT
+    https://crates.io/crates/winapi/0.3.9 0.3.9 Apache-2.0 OR MIT
+    https://crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0 0.4.0 Apache-2.0 OR MIT
+    https://crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0 0.4.0 Apache-2.0 OR MIT
+    https://crates.io/crates/windows-sys/0.29.0 0.29.0 Apache-2.0 OR MIT
+    https://crates.io/crates/windows_aarch64_msvc/0.29.0 0.29.0 Apache-2.0 OR MIT
+    https://crates.io/crates/windows_i686_gnu/0.29.0 0.29.0 Apache-2.0 OR MIT
+    https://crates.io/crates/windows_i686_msvc/0.29.0 0.29.0 Apache-2.0 OR MIT
+    https://crates.io/crates/windows_x86_64_gnu/0.29.0 0.29.0 Apache-2.0 OR MIT
+    https://crates.io/crates/windows_x86_64_msvc/0.29.0 0.29.0 Apache-2.0 OR MIT
+
+========================================================================
+BSD-3-Clause licenses
+========================================================================
+The following components are provided under the BSD-3-Clause License. See project link for details.
+The text of each license is also included in licenses/LICENSE-[project].txt.
+
+    https://crates.io/crates/fuchsia-zircon/0.3.1 0.3.1 BSD-3-Clause
+    https://crates.io/crates/fuchsia-zircon-sys/0.3.1 0.3.1 BSD-3-Clause
+
+========================================================================
+MIT licenses
+========================================================================
+The following components are provided under the MIT License. See project link for details.
+The text of each license is also included in licenses/LICENSE-[project].txt.
+
+    https://crates.io/crates/ansi_term/0.11.0 0.11.0 MIT
+    https://crates.io/crates/async-stream/0.3.0 0.3.0 MIT
+    https://crates.io/crates/async-stream-impl/0.3.0 0.3.0 MIT
+    https://crates.io/crates/atty/0.2.2 0.2.2 MIT
+    https://crates.io/crates/autotools/0.2.4 0.2.4 MIT
+    https://crates.io/crates/axum/0.5.0 0.5.0 MIT
+    https://crates.io/crates/axum-core/0.2.0 0.2.0 MIT
+    https://crates.io/crates/bytes/1.2.1 1.2.1 MIT
+    https://crates.io/crates/clap/2.33.0 2.33.0 MIT
+    https://crates.io/crates/h2/0.3.3 0.3.3 MIT
+    https://crates.io/crates/hostname/0.3.1 0.3.1 MIT
+    https://crates.io/crates/http-body/0.4.4 0.4.4 MIT
+    https://crates.io/crates/http-range-header/0.3.0 0.3.0 MIT
+    https://crates.io/crates/hyper/0.14.14 0.14.14 MIT
+    https://crates.io/crates/kernel32-sys/0.2.0 0.2.0 MIT
+    https://crates.io/crates/matchit/0.5.0 0.5.0 MIT
+    https://crates.io/crates/mio/0.8.1 0.8.1 MIT
+    https://crates.io/crates/nom/7.0.0 7.0.0 MIT
+    https://crates.io/crates/proc-macro-error/0.2.0 0.2.0 MIT
+    https://crates.io/crates/redox_syscall/0.1.38 0.1.38 MIT
+    https://crates.io/crates/redox_syscall/0.2.8 0.2.8 MIT
+    https://crates.io/crates/slab/0.4.2 0.4.2 MIT
+    https://crates.io/crates/strsim/0.8.0 0.8.0 MIT
+    https://crates.io/crates/textwrap/0.11.0 0.11.0 MIT
+    https://crates.io/crates/tokio/1.20.1 1.20.1 MIT
+    https://crates.io/crates/tokio-macros/1.7.0 1.7.0 MIT
+    https://crates.io/crates/tokio-stream/0.1.9 0.1.9 MIT
+    https://crates.io/crates/tokio-util/0.6.3 0.6.3 MIT
+    https://crates.io/crates/tokio-util/0.7.0 0.7.0 MIT
+    https://crates.io/crates/tonic/0.8.0 0.8.0 MIT
+    https://crates.io/crates/tonic-build/0.8.0 0.8.0 MIT
+    https://crates.io/crates/tower/0.4.11 0.4.11 MIT
+    https://crates.io/crates/tower-http/0.2.1 0.2.1 MIT
+    https://crates.io/crates/tower-layer/0.3.1 0.3.1 MIT
+    https://crates.io/crates/tower-service/0.3.0 0.3.0 MIT
+    https://crates.io/crates/tracing/0.1.36 0.1.36 MIT
+    https://crates.io/crates/tracing-attributes/0.1.22 0.1.22 MIT
+    https://crates.io/crates/tracing-core/0.1.29 0.1.29 MIT
+    https://crates.io/crates/tracing-futures/0.2.0 0.2.0 MIT
+    https://crates.io/crates/try-lock/0.2.0 0.2.0 MIT
+    https://crates.io/crates/want/0.3.0 0.3.0 MIT
+    https://crates.io/crates/which/4.0.0 4.0.0 MIT
+    https://crates.io/crates/winapi/0.2.4 0.2.4 MIT
+    https://crates.io/crates/winapi-build/0.1.1 0.1.1 MIT
+
+========================================================================
+MIT OR Unlicense licenses
+========================================================================
+The following components are provided under the MIT OR Unlicense License. See project link for details.
+The text of each license is also included in licenses/LICENSE-[project].txt.
+
+    https://crates.io/crates/memchr/2.4.1 2.4.1 MIT OR Unlicense
+
+========================================================================
+Unlicense licenses
+========================================================================
+The following components are provided under the Unlicense License. See project link for details.
+The text of each license is also included in licenses/LICENSE-[project].txt.
+
+    https://crates.io/crates/systemstat/0.2.0 0.2.0 Unlicense
+
diff --git a/dist-material/LICENSE.tpl b/dist-material/LICENSE.tpl
new file mode 100644
index 0000000..cb845a3
--- /dev/null
+++ b/dist-material/LICENSE.tpl
@@ -0,0 +1,26 @@
+{{ .LicenseContent }}
+
+=======================================================================
+Apache SkyWalking Subcomponents:
+
+The Apache SkyWalking project contains subcomponents with separate copyright
+notices and license terms. Your use of the source code for the these
+subcomponents is subject to the terms and conditions of the following
+licenses.
+========================================================================
+
+{{ range .Groups }}
+========================================================================
+{{ .LicenseID }} licenses
+========================================================================
+The following components are provided under the {{ .LicenseID }} License. See project link for details.
+{{- if contains .LicenseID "Apache-2.0" }}
+The text of each license is the standard Apache 2.0 license.
+{{- else }}
+The text of each license is also included in licenses/LICENSE-[project].txt.
+{{ end }}
+
+    {{- range .Deps }}
+    https://crates.io/crates/{{ .Name }}/{{ .Version }} {{ .Version }} {{ .LicenseID }}
+    {{- end }}
+{{ end }}
diff --git a/NOTICE b/dist-material/NOTICE
similarity index 70%
copy from NOTICE
copy to dist-material/NOTICE
index cf67c8d..c68c699 100644
--- a/NOTICE
+++ b/dist-material/NOTICE
@@ -1,5 +1,5 @@
 Apache SkyWalking
-Copyright 2017-2022 The Apache Software Foundation
+Copyright 2017-2023 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/dist-material/licenses/LICENSE-async-stream-impl.txt b/dist-material/licenses/LICENSE-async-stream-impl.txt
new file mode 100644
index 0000000..8cbd7d6
--- /dev/null
+++ b/dist-material/licenses/LICENSE-async-stream-impl.txt
@@ -0,0 +1,51 @@
+Copyright (c) 2019 Carl Lerche
+
+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.
+
+Copyright (c) 2018 David Tolnay
+
+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.
diff --git a/dist-material/licenses/LICENSE-async-stream.txt b/dist-material/licenses/LICENSE-async-stream.txt
new file mode 100644
index 0000000..8cbd7d6
--- /dev/null
+++ b/dist-material/licenses/LICENSE-async-stream.txt
@@ -0,0 +1,51 @@
+Copyright (c) 2019 Carl Lerche
+
+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.
+
+Copyright (c) 2018 David Tolnay
+
+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.
diff --git a/dist-material/licenses/LICENSE-autotools.txt b/dist-material/licenses/LICENSE-autotools.txt
new file mode 100644
index 0000000..41062e1
--- /dev/null
+++ b/dist-material/licenses/LICENSE-autotools.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2018 Luca Barbato
+
+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.
diff --git a/dist-material/licenses/LICENSE-axum-core.txt b/dist-material/licenses/LICENSE-axum-core.txt
new file mode 100644
index 0000000..538d04a
--- /dev/null
+++ b/dist-material/licenses/LICENSE-axum-core.txt
@@ -0,0 +1,7 @@
+Copyright 2021 Axum Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-axum.txt b/dist-material/licenses/LICENSE-axum.txt
new file mode 100644
index 0000000..11598b4
--- /dev/null
+++ b/dist-material/licenses/LICENSE-axum.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2019 Axum Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-bytes.txt b/dist-material/licenses/LICENSE-bytes.txt
new file mode 100644
index 0000000..58fb29a
--- /dev/null
+++ b/dist-material/licenses/LICENSE-bytes.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2018 Carl Lerche
+
+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.
diff --git a/dist-material/licenses/LICENSE-h2.txt b/dist-material/licenses/LICENSE-h2.txt
new file mode 100644
index 0000000..11239dd
--- /dev/null
+++ b/dist-material/licenses/LICENSE-h2.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2017 h2 authors
+
+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.
diff --git a/dist-material/licenses/LICENSE-hostname.txt b/dist-material/licenses/LICENSE-hostname.txt
new file mode 100644
index 0000000..0a564fa
--- /dev/null
+++ b/dist-material/licenses/LICENSE-hostname.txt
@@ -0,0 +1,22 @@
+MIT License
+
+Copyright (c) 2016 fengcen
+Copyright (c) 2019 svartalf
+
+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.
diff --git a/dist-material/licenses/LICENSE-http-body.txt b/dist-material/licenses/LICENSE-http-body.txt
new file mode 100644
index 0000000..27b08f2
--- /dev/null
+++ b/dist-material/licenses/LICENSE-http-body.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2019 Hyper Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-http-range-header.txt b/dist-material/licenses/LICENSE-http-range-header.txt
new file mode 100644
index 0000000..15aa6e1
--- /dev/null
+++ b/dist-material/licenses/LICENSE-http-range-header.txt
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2021 MarcusGrass
+
+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.
diff --git a/dist-material/licenses/LICENSE-hyper.txt b/dist-material/licenses/LICENSE-hyper.txt
new file mode 100644
index 0000000..bc1e966
--- /dev/null
+++ b/dist-material/licenses/LICENSE-hyper.txt
@@ -0,0 +1,19 @@
+Copyright (c) 2014-2021 Sean McArthur
+
+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.
diff --git a/dist-material/licenses/LICENSE-instant.txt b/dist-material/licenses/LICENSE-instant.txt
new file mode 100644
index 0000000..f8062f3
--- /dev/null
+++ b/dist-material/licenses/LICENSE-instant.txt
@@ -0,0 +1,27 @@
+Copyright (c) 2019, Sébastien Crozet
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+   list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+   this list of conditions and the following disclaimer in the documentation
+   and/or other materials provided with the distribution.
+
+3. Neither the name of the author nor the names of its contributors may be used
+   to endorse or promote products derived from this software without specific
+   prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/dist-material/licenses/LICENSE-matchit.txt b/dist-material/licenses/LICENSE-matchit.txt
new file mode 100644
index 0000000..7b9fe75
--- /dev/null
+++ b/dist-material/licenses/LICENSE-matchit.txt
@@ -0,0 +1,53 @@
+* This repository as a whole is under the following MIT license:
+
+Copyright (c) 2021 ibraheemdev
+
+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.
+
+* Parts of this project was derived from [julienschmidt/httprouter](https://github.com/julienschmidt/httprouter) 
+and so the license from it's repository is included below:
+
+BSD 3-Clause License
+
+Copyright (c) 2013, Julien Schmidt
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+   list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+   this list of conditions and the following disclaimer in the documentation
+   and/or other materials provided with the distribution.
+
+3. Neither the name of the copyright holder nor the names of its
+   contributors may be used to endorse or promote products derived from
+   this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/dist-material/licenses/LICENSE-memchr.txt b/dist-material/licenses/LICENSE-memchr.txt
new file mode 100644
index 0000000..3b0a5dc
--- /dev/null
+++ b/dist-material/licenses/LICENSE-memchr.txt
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2015 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.
diff --git a/dist-material/licenses/LICENSE-mio.txt b/dist-material/licenses/LICENSE-mio.txt
new file mode 100644
index 0000000..3516413
--- /dev/null
+++ b/dist-material/licenses/LICENSE-mio.txt
@@ -0,0 +1,19 @@
+Copyright (c) 2014 Carl Lerche and other MIO contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-nom.txt b/dist-material/licenses/LICENSE-nom.txt
new file mode 100644
index 0000000..88557e4
--- /dev/null
+++ b/dist-material/licenses/LICENSE-nom.txt
@@ -0,0 +1,20 @@
+Copyright (c) 2014-2019 Geoffroy Couprie
+
+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.
diff --git a/dist-material/licenses/LICENSE-redox_syscall.txt b/dist-material/licenses/LICENSE-redox_syscall.txt
new file mode 100644
index 0000000..1292bb7
--- /dev/null
+++ b/dist-material/licenses/LICENSE-redox_syscall.txt
@@ -0,0 +1,22 @@
+Copyright (c) 2017 Redox OS Developers
+
+MIT License
+
+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.
diff --git a/dist-material/licenses/LICENSE-slab.txt b/dist-material/licenses/LICENSE-slab.txt
new file mode 100644
index 0000000..819ce21
--- /dev/null
+++ b/dist-material/licenses/LICENSE-slab.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2019 Carl Lerche
+
+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.
diff --git a/dist-material/licenses/LICENSE-systemstat.txt b/dist-material/licenses/LICENSE-systemstat.txt
new file mode 100644
index 0000000..68a49da
--- /dev/null
+++ b/dist-material/licenses/LICENSE-systemstat.txt
@@ -0,0 +1,24 @@
+This is free and unencumbered software released into the public domain.
+
+Anyone is free to copy, modify, publish, use, compile, sell, or
+distribute this software, either in source code form or as a compiled
+binary, for any purpose, commercial or non-commercial, and by any
+means.
+
+In jurisdictions that recognize copyright laws, the author or authors
+of this software dedicate any and all copyright interest in the
+software to the public domain. We make this dedication for the benefit
+of the public at large and to the detriment of our heirs and
+successors. We intend this dedication to be an overt act of
+relinquishment in perpetuity of all present and future rights to this
+software under copyright law.
+
+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 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.
+
+For more information, please refer to <http://unlicense.org/>
diff --git a/dist-material/licenses/LICENSE-tokio-macros.txt b/dist-material/licenses/LICENSE-tokio-macros.txt
new file mode 100644
index 0000000..a3753c0
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tokio-macros.txt
@@ -0,0 +1,47 @@
+Copyright (c) 2022 Tokio Contributors
+
+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.
+
+The MIT License (MIT)
+
+Copyright (c) 2019 Yoshua Wuyts
+
+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.
diff --git a/dist-material/licenses/LICENSE-tokio-stream.txt b/dist-material/licenses/LICENSE-tokio-stream.txt
new file mode 100644
index 0000000..8af5baf
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tokio-stream.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2022 Tokio Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-tokio-util.txt b/dist-material/licenses/LICENSE-tokio-util.txt
new file mode 100644
index 0000000..8af5baf
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tokio-util.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2022 Tokio Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-tokio.txt b/dist-material/licenses/LICENSE-tokio.txt
new file mode 100644
index 0000000..8af5baf
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tokio.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2022 Tokio Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-tonic-build.txt b/dist-material/licenses/LICENSE-tonic-build.txt
new file mode 100644
index 0000000..3077098
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tonic-build.txt
@@ -0,0 +1,19 @@
+Copyright (c) 2020 Lucio Franco
+
+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.
diff --git a/dist-material/licenses/LICENSE-tonic.txt b/dist-material/licenses/LICENSE-tonic.txt
new file mode 100644
index 0000000..3077098
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tonic.txt
@@ -0,0 +1,19 @@
+Copyright (c) 2020 Lucio Franco
+
+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.
diff --git a/dist-material/licenses/LICENSE-tower-http.txt b/dist-material/licenses/LICENSE-tower-http.txt
new file mode 100644
index 0000000..352c2cf
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tower-http.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2019-2021 Tower Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-tower-layer.txt b/dist-material/licenses/LICENSE-tower-layer.txt
new file mode 100644
index 0000000..b980cac
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tower-layer.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2019 Tower Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-tower-service.txt b/dist-material/licenses/LICENSE-tower-service.txt
new file mode 100644
index 0000000..b980cac
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tower-service.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2019 Tower Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-tower.txt b/dist-material/licenses/LICENSE-tower.txt
new file mode 100644
index 0000000..b980cac
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tower.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2019 Tower Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-tracing-attributes.txt b/dist-material/licenses/LICENSE-tracing-attributes.txt
new file mode 100644
index 0000000..cdb28b4
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tracing-attributes.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2019 Tokio Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-tracing-core.txt b/dist-material/licenses/LICENSE-tracing-core.txt
new file mode 100644
index 0000000..cdb28b4
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tracing-core.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2019 Tokio Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-tracing-futures.txt b/dist-material/licenses/LICENSE-tracing-futures.txt
new file mode 100644
index 0000000..cdb28b4
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tracing-futures.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2019 Tokio Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-tracing.txt b/dist-material/licenses/LICENSE-tracing.txt
new file mode 100644
index 0000000..cdb28b4
--- /dev/null
+++ b/dist-material/licenses/LICENSE-tracing.txt
@@ -0,0 +1,25 @@
+Copyright (c) 2019 Tokio Contributors
+
+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.
diff --git a/dist-material/licenses/LICENSE-try-lock.txt b/dist-material/licenses/LICENSE-try-lock.txt
new file mode 100644
index 0000000..5cddb26
--- /dev/null
+++ b/dist-material/licenses/LICENSE-try-lock.txt
@@ -0,0 +1,21 @@
+Copyright (c) 2018 Sean McArthur
+Copyright (c) 2016 Alex Crichton
+
+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.
+
diff --git a/dist-material/licenses/LICENSE-want.txt b/dist-material/licenses/LICENSE-want.txt
new file mode 100644
index 0000000..e0f0f8a
--- /dev/null
+++ b/dist-material/licenses/LICENSE-want.txt
@@ -0,0 +1,20 @@
+Copyright (c) 2018-2019 Sean McArthur
+
+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.
+
diff --git a/dist-material/licenses/LICENSE-which.txt b/dist-material/licenses/LICENSE-which.txt
new file mode 100644
index 0000000..369139b
--- /dev/null
+++ b/dist-material/licenses/LICENSE-which.txt
@@ -0,0 +1,19 @@
+Copyright (c) 2015 fangyuanziti
+
+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.
diff --git a/e2e/docker/Dockerfile b/e2e/docker/Dockerfile
index d1296c7..5b55d32 100644
--- a/e2e/docker/Dockerfile
+++ b/e2e/docker/Dockerfile
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 #
-FROM rust:1.57
+FROM rust:1.63
 RUN apt-get update && apt-get install -y cmake protobuf-compiler=3.12.4-1
 WORKDIR /build
 COPY . /build/
diff --git a/rust-toolchain.toml b/rust-toolchain.toml
index 32766df..374f8d1 100644
--- a/rust-toolchain.toml
+++ b/rust-toolchain.toml
@@ -16,5 +16,5 @@
 # under the License.
 #
 [toolchain]
-channel = "1.59.0"
+channel = "1.63.0"
 components = ["rustfmt", "clippy"]