1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-02-07 13:54:24 +01:00

30 lines
630 B
Rust
Raw Normal View History

2021-08-06 22:42:31 +01:00
//! Resource path matching and router.
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
2023-02-26 21:55:25 +00:00
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
2021-08-06 22:42:31 +01:00
mod de;
mod path;
mod pattern;
2022-01-04 12:58:40 +00:00
mod quoter;
mod regex_set;
2021-08-06 22:42:31 +01:00
mod resource;
mod resource_path;
2021-08-06 22:42:31 +01:00
mod router;
#[cfg(feature = "http")]
mod url;
2021-08-06 22:42:31 +01:00
#[cfg(feature = "http")]
2022-01-04 12:58:40 +00:00
pub use self::url::Url;
2023-07-17 02:38:12 +01:00
pub use self::{
de::PathDeserializer,
path::Path,
pattern::{IntoPatterns, Patterns},
quoter::Quoter,
resource::ResourceDef,
resource_path::{Resource, ResourcePath},
router::{ResourceId, Router, RouterBuilder},
};