Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(volo-http): add feature json-utf8-lossy #530

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
118 changes: 61 additions & 57 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ volo = { path = "../volo" }
volo-grpc = { path = "../volo-grpc", features = ["grpc-web"] }
volo-thrift = { path = "../volo-thrift", features = ["multiplex"] }
volo-http = { path = "../volo-http", features = [
"default_client",
"default_server",
"default-client",
"default-server",
"cookie",
] }

Expand Down
6 changes: 3 additions & 3 deletions scripts/clippy-and-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ echo_command cargo clippy -p volo-grpc --no-default-features --features native-t
echo_command cargo clippy -p volo-grpc --no-default-features --features native-tls-vendored -- --deny warnings
echo_command cargo clippy -p volo-grpc --no-default-features --features grpc-web -- --deny warnings
echo_command cargo clippy -p volo-http --no-default-features -- --deny warnings
echo_command cargo clippy -p volo-http --no-default-features --features default_client -- --deny warnings
echo_command cargo clippy -p volo-http --no-default-features --features default_server -- --deny warnings
echo_command cargo clippy -p volo-http --no-default-features --features default-client -- --deny warnings
echo_command cargo clippy -p volo-http --no-default-features --features default-server -- --deny warnings
echo_command cargo clippy -p volo-http --no-default-features --features client,server -- --deny warnings
echo_command cargo clippy -p volo-http --no-default-features --features full -- --deny warnings
echo_command cargo clippy -p volo -- --deny warnings
Expand All @@ -43,7 +43,7 @@ echo_command cargo clippy -p examples -- --deny warnings
# Test
echo_command cargo test -p volo-thrift
echo_command cargo test -p volo-grpc --features rustls
echo_command cargo test -p volo-http --features default_client,default_server
echo_command cargo test -p volo-http --features default-client,default-server
echo_command cargo test -p volo-http --features full
echo_command cargo test -p volo --features rustls
echo_command cargo test -p volo-build
Expand Down
Loading
Loading