From 360627bff09d831b95831f63f465cea4b8ef704b Mon Sep 17 00:00:00 2001 From: oxade <93547199+oxade@users.noreply.github.com> Date: Fri, 27 Oct 2023 15:07:21 -0700 Subject: [PATCH] [graphql/rpc] easy/chore: fix workspace import (#14489) ## Description Fixes comment from here https://github.com/MystenLabs/sui/pull/14420#discussion_r1374472597 ## Test Plan Existing --- If your changes are not user-facing and not a breaking change, you can skip the following section. Otherwise, please indicate what changed, and then add to the Release Notes section as highlighted during the release process. ### Type of Change (Check all that apply) - [ ] protocol change - [ ] user-visible impact - [ ] breaking change for a client SDKs - [ ] breaking change for FNs (FN binary must upgrade) - [ ] breaking change for validators or node operators (must upgrade binaries) - [ ] breaking change for on-chain data layout - [ ] necessitate either a data wipe or data migration ### Release notes --- Cargo.toml | 1 + crates/sui-graphql-rpc/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4719f2c8b0fdc..79b94e2ee0fe1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -408,6 +408,7 @@ rustyline = "9.1.2" rustyline-derive = "0.7.0" schemars = { version = "0.8.10", features = ["either"] } scopeguard = "1.1" +serial_test = "2.0.0" serde = { version = "1.0.144", features = ["derive", "rc"] } serde-name = "0.2.1" serde-reflection = "0.3.6" diff --git a/crates/sui-graphql-rpc/Cargo.toml b/crates/sui-graphql-rpc/Cargo.toml index 095640dffeaea..86a736df90e55 100644 --- a/crates/sui-graphql-rpc/Cargo.toml +++ b/crates/sui-graphql-rpc/Cargo.toml @@ -28,7 +28,7 @@ prometheus.workspace = true rand.workspace = true # todo: cleanup test only deps regex.workspace = true reqwest.workspace = true -serial_test = { version = "2.0.0"} +serial_test.workspace = true serde.workspace = true serde_json.workspace = true serde_with.workspace = true