Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
68cdc189
"docs/source/vscode:/vscode.git/clone" did not exist on "f79188da4c3081f786a48366deee0a1ac21f9bc0"
Unverified
Commit
68cdc189
authored
Sep 19, 2025
by
Fabian Gebhart
Committed by
GitHub
Sep 19, 2025
Browse files
[router] preserve order of json params using preserve_order feature (#10661)
parent
7f399e4b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
sgl-router/Cargo.toml
sgl-router/Cargo.toml
+4
-1
No files found.
sgl-router/Cargo.toml
View file @
68cdc189
...
@@ -24,7 +24,10 @@ axum = { version = "0.8.4", features = ["macros", "ws", "tracing"] }
...
@@ -24,7 +24,10 @@ axum = { version = "0.8.4", features = ["macros", "ws", "tracing"] }
tower
=
{
version
=
"0.5"
,
features
=
["full"]
}
tower
=
{
version
=
"0.5"
,
features
=
["full"]
}
tower-http
=
{
version
=
"0.6"
,
features
=
[
"trace"
,
"compression-gzip"
,
"cors"
,
"timeout"
,
"limit"
,
"request-id"
,
"util"
]
}
tower-http
=
{
version
=
"0.6"
,
features
=
[
"trace"
,
"compression-gzip"
,
"cors"
,
"timeout"
,
"limit"
,
"request-id"
,
"util"
]
}
serde
=
{
version
=
"1.0"
,
features
=
["derive"]
}
serde
=
{
version
=
"1.0"
,
features
=
["derive"]
}
serde_json
=
"1.0"
serde_json
=
{
version
=
"1.0"
,
default-features
=
false
,
features
=
[
"std"
,
"preserve_order"
,
]
}
bytes
=
"1.8.0"
bytes
=
"1.8.0"
rand
=
"0.9.2"
rand
=
"0.9.2"
reqwest
=
{
version
=
"0.12.8"
,
features
=
[
"stream"
,
"blocking"
,
"json"
]
}
reqwest
=
{
version
=
"0.12.8"
,
features
=
[
"stream"
,
"blocking"
,
"json"
]
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment