From db89c9842a70c8626de89f511857bb7af4b9caed Mon Sep 17 00:00:00 2001 From: charles Date: Fri, 15 May 2026 14:25:16 -0700 Subject: [PATCH] Add http dependency to helloworld build test --- codegen/tests/test_helloworld_build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/tests/test_helloworld_build.rs b/codegen/tests/test_helloworld_build.rs index e4c02df..f0a5144 100644 --- a/codegen/tests/test_helloworld_build.rs +++ b/codegen/tests/test_helloworld_build.rs @@ -44,7 +44,7 @@ fn test_helloworld_generated_code_builds() { let cargo_toml_content = fs::read_to_string(&cargo_toml_path).expect("Failed to read Cargo.toml"); let updated_cargo_toml = format!( - "{}\n\nroto-codegen = {{ path = \"{}\" }}\nroto-runtime = {{ path = \"{}\" }}\nroto-tonic = {{ path = \"{}\" }}\nbytes = \"1.7\"\ntonic = \"0.12\"\ntokio-stream = \"0.1\"\ntower = \"0.4\"\nfutures-util = \"0.3\"\nhttp-body-util = \"0.1\"\nhttp-body = \"1.0\"\n\n[workspace]\n", + "{}\n\nroto-codegen = {{ path = \"{}\" }}\nroto-runtime = {{ path = \"{}\" }}\nroto-tonic = {{ path = \"{}\" }}\nbytes = \"1.7\"\ntonic = \"0.12\"\ntokio-stream = \"0.1\"\ntower = \"0.4\"\nfutures-util = \"0.3\"\nhttp-body-util = \"0.1\"\nhttp-body = \"1.0\"\n\nhttp = \"1.0\"\n\n[workspace]\n", cargo_toml_content, codegen_root.to_string_lossy(), project_root.join("runtime").to_string_lossy(),