-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Includes: * fix codeowners file * update based on nightly finds
- Loading branch information
Zeeshan Lakhani
authored
Oct 25, 2022
1 parent
11d10d6
commit c2709e7
Showing
9 changed files
with
81 additions
and
18 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
# Default | ||
* @cdata | ||
* @ucan-wg/fission | ||
* @cdata @ucan-wg/fission |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,36 @@ | ||
# ucan-key-support | ||
<div align="center"> | ||
<a href="https://github.com/ucan-wg/rs-ucan" target="_blank"> | ||
<img src="https://raw.githubusercontent.com/ucan-wg/rs-ucan/main/assets/logo.png" alt="rs-ucan Logo" height="200"></img> | ||
</a> | ||
|
||
<h1 align="center">ucan-key-support</h1> | ||
|
||
<p> | ||
<a href="https://crates.io/crates/ucan-key-support"> | ||
<img src="https://img.shields.io/crates/v/ucan-key-support.svg?label=crates" alt="Crate Information"> | ||
</a> | ||
<a href="https://codecov.io/gh/ucan-wg/rs-ucan"> | ||
<img src="https://codecov.io/gh/ucan-wg/rs-ucan/branch/main/graph/badge.svg?token=UZ53MKNKJC" alt="Code Coverage"/> | ||
</a> | ||
<a href="https://github.com/ucan-wg/rs-ucan/actions?query="> | ||
<img src="https://github.com/ucan-wg/rs-ucan/actions/workflows/run_test_suite.yaml/badge.svg" alt="Build Status"> | ||
</a> | ||
<a href="https://github.com/ucan-wg/rs-ucan/blob/main/LICENSE"> | ||
<img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License"> | ||
</a> | ||
<a href="https://docs.rs/ucan-key-support"> | ||
<img src="https://img.shields.io/static/v1?label=Docs&message=docs.rs&color=blue" alt="Docs"> | ||
</a> | ||
<a href="https://discord.gg/JSyFG6XgVM"> | ||
<img src="https://img.shields.io/static/v1?label=Discord&message=join%20us!&color=mediumslateblue" alt="Discord"> | ||
</a> | ||
</p> | ||
</div> | ||
|
||
|
||
## | ||
|
||
This is an auxilliary crate containing ready-to-use `SigningKey` implementations | ||
for the Rust UCAN implementation. | ||
for the [Rust UCAN implementation][rs-ucan]. | ||
|
||
See https://docs.rs/ucan-key-support for documentation. | ||
[rs-ucan]: https://docs.rs/ucan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,39 @@ | ||
# ucan | ||
<div align="center"> | ||
<a href="https://github.com/ucan-wg/rs-ucan" target="_blank"> | ||
<img src="https://raw.githubusercontent.com/ucan-wg/rs-ucan/main/assets/logo.png" alt="rs-ucan Logo" height="200"></img> | ||
</a> | ||
|
||
This is the core Rust UCAN implementation. | ||
<h1 align="center">ucan</h1> | ||
|
||
See https://docs.rs/ucan for documentation. | ||
<p> | ||
<a href="https://crates.io/crates/ucan"> | ||
<img src="https://img.shields.io/crates/v/ucan.svg?label=crates" alt="Crate Information"> | ||
</a> | ||
<a href="https://codecov.io/gh/ucan-wg/rs-ucan"> | ||
<img src="https://codecov.io/gh/ucan-wg/rs-ucan/branch/main/graph/badge.svg?token=UZ53MKNKJC" alt="Code Coverage"/> | ||
</a> | ||
<a href="https://github.com/ucan-wg/rs-ucan/actions?query="> | ||
<img src="https://github.com/ucan-wg/rs-ucan/actions/workflows/run_test_suite.yaml/badge.svg" alt="Build Status"> | ||
</a> | ||
<a href="https://github.com/ucan-wg/rs-ucan/blob/main/LICENSE"> | ||
<img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License"> | ||
</a> | ||
<a href="https://docs.rs/ucan"> | ||
<img src="https://img.shields.io/static/v1?label=Docs&message=docs.rs&color=blue" alt="Docs"> | ||
</a> | ||
<a href="https://discord.gg/JSyFG6XgVM"> | ||
<img src="https://img.shields.io/static/v1?label=Discord&message=join%20us!&color=mediumslateblue" alt="Discord"> | ||
</a> | ||
</p> | ||
</div> | ||
|
||
|
||
## | ||
|
||
This is a Rust library to help the next generation of web applications make use | ||
of UCANs in their authorization flows. To learn more about UCANs and how you | ||
might use them in your application, visit [https://ucan.xyz][ucan website] or | ||
read the [spec][spec]. | ||
|
||
[spec]: https://github.com/ucan-wg/spec | ||
[ucan website]: https://ucan.xyz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters