@@ -223,7 +223,7 @@ fn test_new_verbosity_3_debug()
223223fn  test_check_verbosity_levels ( ) 
224224{ 
225225  let  temp = assert_fs:: TempDir :: new ( ) . unwrap ( ) ; 
226-   temp. child (  "Cargo.toml"  ) . write_str (  "[dependencies]\n unilang = \" 0.30 \" \n "  ) . unwrap ( ) ; 
226+   temp. child (  "Cargo.toml"  ) . write_str (  "[dependencies]\n unilang = \" 0.31 \" \n "  ) . unwrap ( ) ; 
227227
228228  // Verbosity 0 - silent 
229229  Command :: cargo_bin (  "cargo_unilang"  ) 
@@ -312,7 +312,7 @@ fn test_new_exit_3_already_exists()
312312fn  test_check_exit_0_no_issues ( ) 
313313{ 
314314  let  temp = assert_fs:: TempDir :: new ( ) . unwrap ( ) ; 
315-   temp. child (  "Cargo.toml"  ) . write_str (  "[dependencies]\n unilang = \" 0.30 \" \n "  ) . unwrap ( ) ; 
315+   temp. child (  "Cargo.toml"  ) . write_str (  "[dependencies]\n unilang = \" 0.31 \" \n "  ) . unwrap ( ) ; 
316316
317317  Command :: cargo_bin (  "cargo_unilang"  ) 
318318    . unwrap ( ) 
@@ -328,7 +328,7 @@ fn test_check_exit_1_issues_found()
328328{ 
329329  let  temp = assert_fs:: TempDir :: new ( ) . unwrap ( ) ; 
330330  temp. child (  "build.rs"  ) . write_str (  "fn main() { serde_yaml::from_str(); }"  ) . unwrap ( ) ; 
331-   temp. child (  "Cargo.toml"  ) . write_str (  "[dependencies]\n unilang = \" 0.30 \" \n "  ) . unwrap ( ) ; 
331+   temp. child (  "Cargo.toml"  ) . write_str (  "[dependencies]\n unilang = \" 0.31 \" \n "  ) . unwrap ( ) ; 
332332
333333  Command :: cargo_bin (  "cargo_unilang"  ) 
334334    . unwrap ( ) 
@@ -515,7 +515,7 @@ fn test_check_detects_custom_build_rs()
515515{ 
516516  let  temp = assert_fs:: TempDir :: new ( ) . unwrap ( ) ; 
517517  temp. child (  "build.rs"  ) . write_str (  "fn main() { serde_yaml::from_str(); }"  ) . unwrap ( ) ; 
518-   temp. child (  "Cargo.toml"  ) . write_str (  "[dependencies]\n unilang = \" 0.30 \" \n "  ) . unwrap ( ) ; 
518+   temp. child (  "Cargo.toml"  ) . write_str (  "[dependencies]\n unilang = \" 0.31 \" \n "  ) . unwrap ( ) ; 
519519
520520  Command :: cargo_bin (  "cargo_unilang"  ) 
521521    . unwrap ( ) 
@@ -533,7 +533,7 @@ fn test_check_detects_duplicate_dependencies()
533533  let  temp = assert_fs:: TempDir :: new ( ) . unwrap ( ) ; 
534534  temp. child (  "Cargo.toml"  ) . write_str ( 
535535r#"[dependencies] 
536- unilang = "0.30 " 
536+ unilang = "0.31 " 
537537serde_yaml = "0.9" 
538538"# 
539539  ) . unwrap ( ) ; 
@@ -562,7 +562,7 @@ fn main() {
562562} 
563563"# 
564564  ) . unwrap ( ) ; 
565-   temp. child (  "Cargo.toml"  ) . write_str (  "[dependencies]\n unilang = \" 0.30 \" \n "  ) . unwrap ( ) ; 
565+   temp. child (  "Cargo.toml"  ) . write_str (  "[dependencies]\n unilang = \" 0.31 \" \n "  ) . unwrap ( ) ; 
566566
567567  Command :: cargo_bin (  "cargo_unilang"  ) 
568568    . unwrap ( ) 
@@ -587,7 +587,7 @@ fn main() {
587587} 
588588"# 
589589  ) . unwrap ( ) ; 
590-   temp. child (  "Cargo.toml"  ) . write_str (  "[dependencies]\n unilang = \" 0.30 \" \n "  ) . unwrap ( ) ; 
590+   temp. child (  "Cargo.toml"  ) . write_str (  "[dependencies]\n unilang = \" 0.31 \" \n "  ) . unwrap ( ) ; 
591591
592592  Command :: cargo_bin (  "cargo_unilang"  ) 
593593    . unwrap ( ) 
@@ -649,7 +649,7 @@ fn test_check_ignores_comments_in_cargo_toml()
649649  let  temp = assert_fs:: TempDir :: new ( ) . unwrap ( ) ; 
650650  temp. child (  "Cargo.toml"  ) . write_str ( 
651651r#"[dependencies] 
652- unilang = "0.30 " 
652+ unilang = "0.31 " 
653653
654654# ⚠️  IMPORTANT: Do NOT add these - unilang already provides them: 
655655# ❌ serde_yaml (via yaml_parser feature) 
@@ -674,7 +674,7 @@ fn test_check_multiple_issues()
674674  temp. child (  "build.rs"  ) . write_str (  "fn main() { serde_yaml::from_str(); }"  ) . unwrap ( ) ; 
675675  temp. child (  "Cargo.toml"  ) . write_str ( 
676676r#"[dependencies] 
677- unilang = "0.30 " 
677+ unilang = "0.31 " 
678678serde_yaml = "0.9" 
679679walkdir = "2.0" 
680680"# 
0 commit comments