Skip to content

Commit

Permalink
Remove UDP from keywords in Cargo.toml files
Browse files Browse the repository at this point in the history
  • Loading branch information
picoHz committed Nov 10, 2024
1 parent 2c72b89 commit 7291bd2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion taxy-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Type definitions and API for taxy"
version = "0.1.19"
edition = "2021"
authors = ["picoHz <[email protected]>"]
keywords = ["tcp", "udp", "http", "tls", "proxy", "reverse-proxy"]
keywords = ["tcp", "http", "tls", "proxy", "reverse-proxy"]
categories = [
"network-programming",
"web-programming",
Expand Down
7 changes: 5 additions & 2 deletions taxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include = ["/src", "/templates", "/build.rs", "/LICENSE", "/dist/webui"]
build = "build.rs"
description = "A reverse proxy server with built-in WebUI, supporting TCP/HTTP/TLS/WebSocket."
authors = ["picoHz <[email protected]>"]
keywords = ["tcp", "udp", "http", "tls", "proxy", "reverse-proxy"]
keywords = ["tcp", "http", "tls", "proxy", "reverse-proxy"]
categories = [
"network-programming",
"web-programming",
Expand Down Expand Up @@ -34,7 +34,10 @@ fnv = "1.0.7"
futures = "0.3.28"
globwalk = "0.9.1"
hex = "0.4.3"
hickory-resolver = { version = "0.24.1", features = ["tokio-runtime", "system-config"] }
hickory-resolver = { version = "0.24.1", features = [
"tokio-runtime",
"system-config",
] }
humantime-serde = "1.1.1"
hyper = { version = "0.14.27", features = ["full"] }
include_dir = "0.7.3"
Expand Down

0 comments on commit 7291bd2

Please sign in to comment.