Skip to content

Commit

Permalink
docs(lib): do not inline http rexports
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Oct 23, 2024
1 parent 720d2db commit 906f8db
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,8 @@ pub use http;
#[cfg(all(test, feature = "nightly"))]
extern crate test;

pub use crate::http::{header, Method, Request, Response, StatusCode, Uri, Version};

#[doc(no_inline)]
pub use crate::http::HeaderMap;
pub use http::{header, HeaderMap, Method, Request, Response, StatusCode, Uri, Version};

pub use crate::error::{Error, Result};

Expand Down

1 comment on commit 906f8db

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'end_to_end'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 906f8db Previous: 720d2db Ratio
http2_parallel_x10_req_10kb_100_chunks_adaptive_window 24005735 ns/iter (± 9702494.63) 7782676 ns/iter (± 133827.41) 3.08

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.