Skip to content

Commit aff7471

Browse files
committedMar 2, 2024·
Re-export curl and ureq
1 parent 85ea470 commit aff7471

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
 

‎src/curl.rs

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ use http::status::StatusCode;
77

88
use std::io::Read;
99

10+
pub use curl;
11+
1012
/// Error type returned by failed curl HTTP requests.
1113
#[derive(Debug, thiserror::Error)]
1214
pub enum Error {

‎src/ureq.rs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ use http::{
88

99
use std::io::Read;
1010

11+
pub use ureq;
12+
1113
/// Error type returned by failed ureq HTTP requests.
1214
#[derive(Debug, thiserror::Error)]
1315
pub enum Error {

0 commit comments

Comments
 (0)
Please sign in to comment.