We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 971c8bc commit 3067071Copy full SHA for 3067071
packages/perseus-cli/src/prepare.rs
@@ -102,8 +102,12 @@ pub fn prepare(dir: PathBuf) -> Result<(), PrepError> {
102
&format!("version = \"{}\"", PERSEUS_VERSION),
103
)
104
.replace(
105
- "{ path = \"../../../../packages/perseus-actix-web\" }",
106
- &format!("\"{}\"", PERSEUS_VERSION),
+ "path = \"../../../../packages/perseus-actix-web\"",
+ &format!("version = \"{}\"", PERSEUS_VERSION),
107
+ )
108
+ .replace(
109
+ "path = \"../../../../packages/perseus-warp\"",
110
111
);
112
#[cfg(not(debug_assertions))]
113
let updated_builder_manifest = updated_builder_manifest.replace(
0 commit comments