File tree Expand file tree Collapse file tree 31 files changed +396
-148
lines changed
tests/testsuite/cargo_remove Expand file tree Collapse file tree 31 files changed +396
-148
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,21 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
15
+ . feature ( "std" , & [ ] )
16
+ . publish ( ) ;
17
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
18
+ . feature ( "std" , & [ ] )
19
+ . publish ( ) ;
20
+
11
21
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
22
let project_root = project. root ( ) ;
13
23
let cwd = & project_root;
Original file line number Diff line number Diff line change @@ -3,11 +3,21 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
15
+ . feature ( "std" , & [ ] )
16
+ . publish ( ) ;
17
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
18
+ . feature ( "std" , & [ ] )
19
+ . publish ( ) ;
20
+
11
21
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
22
let project_root = project. root ( ) ;
13
23
let cwd = & project_root;
Original file line number Diff line number Diff line change @@ -3,11 +3,21 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
15
+ . feature ( "std" , & [ ] )
16
+ . publish ( ) ;
17
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
18
+ . feature ( "std" , & [ ] )
19
+ . publish ( ) ;
20
+
11
21
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
22
let project_root = project. root ( ) ;
13
23
let cwd = & project_root;
Original file line number Diff line number Diff line change @@ -3,11 +3,21 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
15
+ . feature ( "std" , & [ ] )
16
+ . publish ( ) ;
17
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
18
+ . feature ( "std" , & [ ] )
19
+ . publish ( ) ;
20
+
11
21
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
22
let project_root = project. root ( ) ;
13
23
let cwd = & project_root;
Original file line number Diff line number Diff line change @@ -5,11 +5,9 @@ use cargo_test_support::git;
5
5
use cargo_test_support:: project;
6
6
use cargo_test_support:: CargoCommand ;
7
7
8
- use crate :: cargo_remove:: init_registry;
9
-
10
8
#[ cargo_test]
11
9
fn case ( ) {
12
- init_registry ( ) ;
10
+ cargo_test_support :: registry :: init ( ) ;
13
11
14
12
let git_project1 = git:: new ( "bar1" , |project| {
15
13
project
Original file line number Diff line number Diff line change @@ -3,11 +3,22 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.2.3+my-package" ) . publish ( ) ;
15
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
16
+ . feature ( "std" , & [ ] )
17
+ . publish ( ) ;
18
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
19
+ . feature ( "std" , & [ ] )
20
+ . publish ( ) ;
21
+
11
22
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
23
let project_root = project. root ( ) ;
13
24
let cwd = & project_root;
Original file line number Diff line number Diff line change @@ -3,11 +3,22 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.2.3+my-package" ) . publish ( ) ;
15
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
16
+ . feature ( "std" , & [ ] )
17
+ . publish ( ) ;
18
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
19
+ . feature ( "std" , & [ ] )
20
+ . publish ( ) ;
21
+
11
22
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
23
let project_root = project. root ( ) ;
13
24
let cwd = & project_root;
Original file line number Diff line number Diff line change @@ -3,11 +3,21 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
15
+ . feature ( "std" , & [ ] )
16
+ . publish ( ) ;
17
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
18
+ . feature ( "std" , & [ ] )
19
+ . publish ( ) ;
20
+
11
21
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
22
let project_root = project. root ( ) ;
13
23
let cwd = & project_root;
Original file line number Diff line number Diff line change @@ -3,11 +3,21 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
15
+ . feature ( "std" , & [ ] )
16
+ . publish ( ) ;
17
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
18
+ . feature ( "std" , & [ ] )
19
+ . publish ( ) ;
20
+
11
21
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
22
let project_root = project. root ( ) ;
13
23
let cwd = & project_root;
Original file line number Diff line number Diff line change @@ -3,11 +3,23 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "dbus" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "ncurses" , "20.0.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
15
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
16
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
17
+ . feature ( "std" , & [ ] )
18
+ . publish ( ) ;
19
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
20
+ . feature ( "std" , & [ ] )
21
+ . publish ( ) ;
22
+
11
23
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
24
let project_root = project. root ( ) ;
13
25
let cwd = & project_root;
Original file line number Diff line number Diff line change @@ -3,11 +3,23 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "dbus" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "ncurses" , "20.0.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
15
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
16
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
17
+ . feature ( "std" , & [ ] )
18
+ . publish ( ) ;
19
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
20
+ . feature ( "std" , & [ ] )
21
+ . publish ( ) ;
22
+
11
23
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
24
let project_root = project. root ( ) ;
13
25
let cwd = & project_root;
Original file line number Diff line number Diff line change @@ -3,11 +3,21 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
15
+ . feature ( "std" , & [ ] )
16
+ . publish ( ) ;
17
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
18
+ . feature ( "std" , & [ ] )
19
+ . publish ( ) ;
20
+
11
21
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
22
let project_root = project. root ( ) ;
13
23
let cwd = & project_root;
Original file line number Diff line number Diff line change @@ -3,11 +3,21 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
15
+ . feature ( "std" , & [ ] )
16
+ . publish ( ) ;
17
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
18
+ . feature ( "std" , & [ ] )
19
+ . publish ( ) ;
20
+
11
21
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
22
let project_root = project. root ( ) ;
13
23
let cwd = & project_root;
Original file line number Diff line number Diff line change @@ -3,11 +3,23 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "dbus" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "ncurses" , "20.0.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
15
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
16
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
17
+ . feature ( "std" , & [ ] )
18
+ . publish ( ) ;
19
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
20
+ . feature ( "std" , & [ ] )
21
+ . publish ( ) ;
22
+
11
23
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
24
let project_root = project. root ( ) ;
13
25
let cwd = & project_root;
Original file line number Diff line number Diff line change @@ -3,11 +3,23 @@ use cargo_test_support::curr_dir;
3
3
use cargo_test_support:: CargoCommand ;
4
4
use cargo_test_support:: Project ;
5
5
6
- use crate :: cargo_remove:: init_registry;
7
-
8
6
#[ cargo_test]
9
7
fn case ( ) {
10
- init_registry ( ) ;
8
+ cargo_test_support:: registry:: init ( ) ;
9
+ cargo_test_support:: registry:: Package :: new ( "clippy" , "0.4.0+my-package" ) . publish ( ) ;
10
+ cargo_test_support:: registry:: Package :: new ( "dbus" , "0.6.2+my-package" ) . publish ( ) ;
11
+ cargo_test_support:: registry:: Package :: new ( "docopt" , "0.6.2+my-package" ) . publish ( ) ;
12
+ cargo_test_support:: registry:: Package :: new ( "ncurses" , "20.0.0+my-package" ) . publish ( ) ;
13
+ cargo_test_support:: registry:: Package :: new ( "regex" , "0.1.1+my-package" ) . publish ( ) ;
14
+ cargo_test_support:: registry:: Package :: new ( "rustc-serialize" , "0.4.0+my-package" ) . publish ( ) ;
15
+ cargo_test_support:: registry:: Package :: new ( "toml" , "0.1.1+my-package" ) . publish ( ) ;
16
+ cargo_test_support:: registry:: Package :: new ( "semver" , "0.1.1" )
17
+ . feature ( "std" , & [ ] )
18
+ . publish ( ) ;
19
+ cargo_test_support:: registry:: Package :: new ( "serde" , "1.0.90" )
20
+ . feature ( "std" , & [ ] )
21
+ . publish ( ) ;
22
+
11
23
let project = Project :: from_template ( curr_dir ! ( ) . join ( "in" ) ) ;
12
24
let project_root = project. root ( ) ;
13
25
let cwd = & project_root;
You can’t perform that action at this time.
0 commit comments