Fix example for creating a git project test.

This commit is contained in:
Eric Huss 2023-09-06 18:56:12 -07:00
parent 016fe194a3
commit 8964f3fd5d

View file

@ -10,7 +10,7 @@ Example:
```
let git_project = git::new("dep1", |project| {
project
.file("Cargo.toml", &basic_manifest("dep1"))
.file("Cargo.toml", &basic_manifest("dep1", "1.0.0"))
.file("src/lib.rs", r#"pub fn f() { println!("hi!"); } "#)
});