diff --git a/create-rust-app_cli/src/content/project.rs b/create-rust-app_cli/src/content/project.rs index e018c4e5..c808ec7b 100644 --- a/create-rust-app_cli/src/content/project.rs +++ b/create-rust-app_cli/src/content/project.rs @@ -346,8 +346,8 @@ pub fn create(project_name: &str, creation_options: CreationOptions) -> Result<( r#"chrono = { version = "0.4.19", features = ["serde"] }"#, )?; // todo: move these deps to the helper crate (./create-rust-app/Cargo.toml) behind feature flags - add_dependency(&project_dir, "tsync", r#"tsync = "1.6.0""#)?; - add_dependency(&project_dir, "dsync", r#"dsync = "0.0.5""#)?; + add_dependency(&project_dir, "tsync", r#"tsync = "1""#)?; + add_dependency(&project_dir, "dsync", r#"dsync = "0""#)?; add_dependency( &project_dir, "diesel",