diff options
author | webbeef <me@webbeef.org> | 2024-08-21 21:11:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-22 04:11:16 +0000 |
commit | 663a92a5df39f5daef091624b6e29c228dcecbc3 (patch) | |
tree | dbcf67d033768d91ed585623c816410f0267d34d /components/net/lib.rs | |
parent | 562d32c0519d58052cea681a696546fd4818bd3a (diff) | |
download | servo-663a92a5df39f5daef091624b6e29c228dcecbc3.tar.gz servo-663a92a5df39f5daef091624b6e29c228dcecbc3.zip |
make protocol handlers registrable (#33104)
Signed-off-by: webbeef <me@webbeef.org>
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r-- | components/net/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs index cff77a022a0..98a70391c8c 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -8,7 +8,6 @@ pub mod async_runtime; pub mod connector; pub mod cookie; pub mod cookie_storage; -mod data_loader; mod decoder; pub mod filemanager_thread; mod hosts; @@ -18,6 +17,7 @@ pub mod http_loader; pub mod image_cache; pub mod local_directory_listing; pub mod mime_classifier; +pub mod protocols; pub mod resource_thread; mod storage_thread; pub mod subresource_integrity; |