Skip to content

Commit b39674e

Browse files
committed
Remove unused URL encoding functionality and update dependencies
- Removed "urlencoding" from .cspell.json as it is no longer needed. - Added new dependencies in Cargo.lock including "displaydoc", "form_urlencoded", and "url". - Updated the Cargo.toml to include the "url" dependency. - Refactored ipc_http_server.rs to utilize the "url" crate for query parameter parsing instead of the removed "urlencoding" module. - Cleaned up the RequestContext structure to include path parameters. - Removed the test for URL decoding security from lib.rs as it is no longer applicable.
1 parent a987470 commit b39674e

File tree

5 files changed

+449
-258
lines changed

5 files changed

+449
-258
lines changed

.cspell.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@
9393
"retriable",
9494
"dotenvy",
9595
"oneshot",
96-
"urlencoding",
9796
"Deque",
9897
"dotenv",
9998
"serde",

Cargo.lock

Lines changed: 278 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ pin-project-lite = "0.2.16"
3535
toml = "0.9.7"
3636
rand = "0.9.2"
3737
path-tree = {version = "0.8.3", optional = true}
38+
url = "2.5.7"
3839

3940
[target.'cfg(unix)'.dependencies]
4041
libc = "0.2.176"

0 commit comments

Comments
 (0)