io_http/rfc8615/mod.rs
1//! Well-Known URIs ([RFC 8615]).
2//!
3//! Reserves the `/.well-known/` path prefix on HTTP/HTTPS origins for
4//! service-metadata endpoints; clients GET `/.well-known/{service}` and
5//! typically follow a 3xx redirect to the actual service URL.
6//!
7//! Common service names used by Pimalaya:
8//!
9//! | Service name | Protocol | RFC |
10//! |--------------|----------|-----|
11//! | `caldav` | CalDAV | RFC 6764 |
12//! | `carddav` | CardDAV | RFC 6764 |
13//! | `oauth-authorization-server` | OAuth 2.0 | RFC 8414 |
14//!
15//! [RFC 8615]: https://www.rfc-editor.org/rfc/rfc8615
16
17pub mod well_known;