diff --git a/tests/extern_path/my_application/Cargo.toml b/tests/extern_path/my_application/Cargo.toml index 28564b5..801a829 100644 --- a/tests/extern_path/my_application/Cargo.toml +++ b/tests/extern_path/my_application/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT" tonic = { path= "../../../tonic" } prost = "0.6" prost-types = "0.6" -uuid = { path= "../uuid" } +uuid = { package = "uuid1", path= "../uuid" } [build-dependencies] tonic-build = { path= "../../../tonic-build" } diff --git a/tests/extern_path/uuid/Cargo.toml b/tests/extern_path/uuid/Cargo.toml index 00061c7..2fdfad3 100644 --- a/tests/extern_path/uuid/Cargo.toml +++ b/tests/extern_path/uuid/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "uuid" +name = "uuid1" version = "0.1.0" authors = ["Danny Hua "] edition = "2018"