Skip to content

Commit 46b89d9

Browse files
committed
feat: v20.1.7
1 parent dc3eb53 commit 46b89d9

139 files changed

Lines changed: 228 additions & 97 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitattributes

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Explicit LF enforcement for tracked source/config files
2+
# (overrides any local phantom writes that introduce CRLF)
3+
*.rs text eol=lf
4+
*.toml text eol=lf
5+
*.md text eol=lf
6+
*.json text eol=lf
7+
*.html text eol=lf
8+
*.js text eol=lf
9+
*.css text eol=lf
10+
*.lock text eol=lf
11+
*.yaml text eol=lf
12+
*.yml text eol=lf
13+
*.sh text eol=lf
14+
*.bash text eol=lf
15+
*.txt text eol=lf
16+
17+
# Force binary for non-text
18+
*.png binary
19+
*.jpg binary
20+
*.jpeg binary
21+
*.gif binary
22+
*.ico binary
23+
*.webp binary
24+
*.wasm binary
25+
*.zip binary
26+
*.tar binary
27+
*.gz binary
28+
*.pdf binary
29+
*.exe binary
30+
*.dll binary
31+
*.so binary
32+
*.dylib binary

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "http-type"
3-
version = "20.1.6"
3+
version = "20.1.7"
44
readme = "README.md"
55
edition = "2024"
66
authors = ["root@ltpp.vip"]
@@ -14,13 +14,13 @@ exclude = ["target", "Cargo.lock", "sh", ".github"]
1414
[dependencies]
1515
hex = "0.4.3"
1616
url = "2.5.8"
17-
serde_json = "1.0.150"
17+
serde_json = "1.0.151"
1818
serde-xml-rs = "0.8.2"
19-
http-compress = "3.0.24"
20-
http-constant = "5.6.11"
21-
lombok-macros = "2.0.32"
19+
http-compress = "3.0.25"
20+
http-constant = "5.6.12"
21+
lombok-macros = "2.0.33"
2222
serde_urlencoded = "0.7.1"
23-
tokio = { version = "1.53.0", features = ["full"] }
23+
tokio = { version = "1.53.1", features = ["full"] }
2424
serde = { version = "1.0.229", features = ["derive"] }
2525

2626
[profile.dev]

src/any/impl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::*;
1+
use super::*;
22

33
/// Implements `AnySend` for types that are `Any` and `Send`.
44
///

src/any/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ mod r#trait;
33
mod r#type;
44

55
pub use {r#trait::*, r#type::*};
6+
7+
use super::*;

src/any/trait.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::*;
1+
use super::*;
22

33
/// Represents a type that can be dynamically downcast and is safe to send across threads.
44
///

src/any/type.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::*;
1+
use super::*;
22

33
/// A type alias for a boxed `Any` trait object.
44
///

src/arc_mutex/fn.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::*;
1+
use super::*;
22

33
/// Creates a new `ArcMutex` from the given data.
44
///

src/arc_mutex/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ mod r#fn;
22
mod r#type;
33

44
pub use {r#fn::*, r#type::*};
5+
6+
use super::*;

src/arc_mutex/type.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::*;
1+
use super::*;
22

33
/// A type alias for a thread-safe, atomically reference-counted mutex.
44
///

src/arc_rwlock/fn.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::*;
1+
use super::*;
22

33
/// Creates a new thread-safe reference-counted read-write lock.
44
///

0 commit comments

Comments
 (0)