Skip to content

Commit

Permalink
Remove unused dep to sui_core (#15383)
Browse files Browse the repository at this point in the history
## Description 

sui_core is not used in these crates, removing dep.

## Test Plan 

CI

---
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
  • Loading branch information
lxfind authored Dec 14, 2023
1 parent b7c853b commit 490b51d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions crates/sui-move/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ tokio = { workspace = true, features = ["full"] }
move-vm-runtime = { path = "../../external-crates/move/crates/move-vm-runtime" }
sui-move-natives = { path = "../../sui-execution/latest/sui-move-natives", package = "sui-move-natives-latest" }

sui-core = { workspace = true, optional = true }
sui-move-build.workspace = true
sui-protocol-config.workspace = true
sui-types.workspace = true
Expand Down Expand Up @@ -65,6 +64,6 @@ build = []
coverage = []
disassemble = []
prove = []
unit_test = ["build", "dep:once_cell", "dep:sui-core"]
unit_test = ["build", "dep:once_cell"]
calibrate = []
all = ["build", "coverage", "disassemble", "prove", "unit_test", "calibrate"]
1 change: 0 additions & 1 deletion crates/sui-open-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ clap.workspace = true
pretty_assertions.workspace = true
tokio = { workspace = true, features = ["full"] }
fastcrypto = { workspace = true }
sui-core.workspace = true
sui-json-rpc.workspace = true
sui-json-rpc-types.workspace = true
sui-json.workspace = true
Expand Down

0 comments on commit 490b51d

Please sign in to comment.