Add test-all.sh script for comprehensive feature testing and automate workflows

This commit is contained in:
geoffsee
2025-08-28 14:06:50 -04:00
parent b0d37194fe
commit 9818998379
13 changed files with 1073 additions and 350 deletions

View File

@@ -3,6 +3,14 @@ name = "example"
version = "0.1.0"
edition = "2024"
[features]
# No-op features used only by the example to allow conditional compilation in docs/examples.
# They are intentionally empty — the example file uses these cfg names to show feature-specific examples.
native-tls = []
rustls = []
insecure-dangerous = []
[dependencies]
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
axum = "0.8.4"