We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e7882f commit a31f3d0Copy full SHA for a31f3d0
crates/proto/build.rs
@@ -9,10 +9,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
9
10
if target.contains("wasm32") {
11
if feature_server {
12
- return Err(format!(
13
- "feature `server` is not supported on target `{target}`"
14
- )
15
- .into());
+ return Err(format!("feature `server` is not supported on target `{target}`").into());
16
}
17
18
wasm_tonic_build::configure()
0 commit comments