-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port Go documentation for all types and fields (#3)
Signed-off-by: Oliver Gould <[email protected]>
- Loading branch information
Showing
13 changed files
with
899 additions
and
40 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,30 @@ | ||
# k8s-gateway-api | ||
|
||
Rust bindings for the [Kubernetes Gateway API][ref]. | ||
(Unofficial) Rust bindings for the [Kubernetes Gateway API][ref]. | ||
|
||
Based on <https://github.com/kubernetes-sigs/gateway-api/releases/tag/v0.4.3>. | ||
|
||
[![Crates.io][crate-badge]][crate-url] | ||
[![Documentation][docs-badge]][docs-url] | ||
[![License][lic-badge]](LICENSE) | ||
|
||
[crate-badge]: https://img.shields.io/crates/v/k8s-gateway-api.svg | ||
[crate-url]: https://crates.io/crates/k8s-gateway-api | ||
[docs-badge]: https://docs.rs/k8s-gateway-api/badge.svg | ||
[docs-url]: https://docs.rs/k8s-gateway-api | ||
[docs-url]: https://img.shields.io/crates/l/k8s-gateway-api | ||
[lic-badge]: https://img.shields.io/crates/l/k8s-gateway-api | ||
|
||
## Status | ||
|
||
This crate is experimental. | ||
|
||
It defines all of the v1alpha2 Gateway API types with documentation. | ||
|
||
### TODO | ||
|
||
* Express validation constraints | ||
* Rustify/Linkify documentation | ||
* Support Linkerd-specific extensions (via feature flag). | ||
|
||
[ref]: https://gateway-api.sigs.k8s.io/ |
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 +1,12 @@ | ||
//! Unofficial Rust bindings for the [Kubernetes Gateway API][gh]. | ||
//! | ||
//! [gh]: https://github.com/kubernetes-sigs/gateway-api | ||
#![deny(warnings, rust_2018_idioms)] | ||
#![forbid(unsafe_code)] | ||
|
||
// TODO(ver): We should deny missing_docs, but this doesn't play with | ||
// CustomResource derivations. | ||
|
||
/// The v1alpha2 API version. | ||
pub mod v1alpha2; |
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
Oops, something went wrong.