From 89c900da885d0b56703e1046158dac5e573ae320 Mon Sep 17 00:00:00 2001 From: 0xripleys <0xripleys@solend.fi> Date: Sat, 16 Nov 2024 17:18:38 -0500 Subject: [PATCH] trim move.toml --- contracts/sprungsui/Move.toml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/contracts/sprungsui/Move.toml b/contracts/sprungsui/Move.toml index fae5fee..dbcc71b 100644 --- a/contracts/sprungsui/Move.toml +++ b/contracts/sprungsui/Move.toml @@ -1,37 +1,14 @@ [package] name = "sprungsui" edition = "2024.beta" # edition = "legacy" to use legacy (pre-2024) Move -# license = "" # e.g., "MIT", "GPL", "Apache 2.0" -# authors = ["..."] # e.g., ["Joe Smith (joesmith@noemail.com)", "John Snow (johnsnow@noemail.com)"] [dependencies] Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet" } -# For remote import, use the `{ git = "...", subdir = "...", rev = "..." }`. -# Revision can be a branch, a tag, and a commit hash. -# MyRemotePackage = { git = "https://some.remote/host.git", subdir = "remote/path", rev = "main" } - -# For local dependencies use `local = path`. Path is relative to the package root -# Local = { local = "../path/to" } - -# To resolve a version conflict and force a specific version for dependency -# override use `override = true` -# Override = { local = "../conflicting/version", override = true } - [addresses] sprungsui = "0x0" -# Named addresses will be accessible in Move as `@name`. They're also exported: -# for example, `std = "0x1"` is exported by the Standard Library. -# alice = "0xA11CE" - [dev-dependencies] -# The dev-dependencies section allows overriding dependencies for `--test` and -# `--dev` modes. You can introduce test-only dependencies here. -# Local = { local = "../path/to/dev-build" } [dev-addresses] -# The dev-addresses section allows overwriting named addresses for the `--test` -# and `--dev` modes. -# alice = "0xB0B"