From e5b1f8a1725d10bb08563bd4fdc914b73666077f Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Wed, 1 Apr 2020 12:35:11 -0400 Subject: [PATCH] chore: Rename internal uuid crate (#319) Signed-off-by: Lucio Franco --- tests/extern_path/my_application/Cargo.toml | 2 +- tests/extern_path/uuid/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"