Skip to content

Commit

Permalink
feat:dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ltpp-universe committed Dec 22, 2024
1 parent 4eb0a81 commit d6420aa
Show file tree
Hide file tree
Showing 52 changed files with 105 additions and 985 deletions.
68 changes: 61 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "http-request"
version = "8.0.2"
version = "8.1.0"
edition = "2021"
authors = ["ltpp-universe <[email protected]>"]
license = "MIT"
Expand All @@ -19,6 +19,9 @@ exclude = [
brotli = "7.0.0"
flate2 = "1.0.35"
hex = "0.4.3"
http-compress = "0.0.2"
http-constant = "1.2.0"
http-type = "1.0.0"
native-tls = "0.2.12"
serde = { version = "1.0", features = ["derive"] }
serde-xml-rs = "0.6.0"
Expand Down
23 changes: 0 additions & 23 deletions src/compress/brotli/decode.rs

This file was deleted.

1 change: 0 additions & 1 deletion src/compress/brotli/mod.rs

This file was deleted.

14 changes: 0 additions & 14 deletions src/compress/constant.rs

This file was deleted.

21 changes: 0 additions & 21 deletions src/compress/deflate/decode.rs

This file was deleted.

1 change: 0 additions & 1 deletion src/compress/deflate/mod.rs

This file was deleted.

28 changes: 0 additions & 28 deletions src/compress/gzip/decode.rs

This file was deleted.

1 change: 0 additions & 1 deletion src/compress/gzip/mod.rs

This file was deleted.

73 changes: 0 additions & 73 deletions src/compress/impl.rs

This file was deleted.

6 changes: 0 additions & 6 deletions src/compress/mod.rs

This file was deleted.

7 changes: 0 additions & 7 deletions src/compress/type.rs

This file was deleted.

50 changes: 0 additions & 50 deletions src/constant/common.rs

This file was deleted.

3 changes: 1 addition & 2 deletions src/constant/mod.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
pub mod common;
pub mod request;
pub mod r#type;
6 changes: 6 additions & 0 deletions src/constant/request.rs → src/constant/type.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/// The name of the application.
///
/// This constant represents the name of the application used for
/// identifying the current application context.
pub static APP_NAME: &str = "http-request";

/// The default timeout value for HTTP requests, represented in milliseconds.
/// This value is used when no specific timeout is provided, ensuring that requests
/// have a reasonable maximum duration before timing out.
Expand Down
Loading

0 comments on commit d6420aa

Please sign in to comment.