Skip to content

Commit

Permalink
Merge branch 'main' into feat/dockerize
Browse files Browse the repository at this point in the history
  • Loading branch information
tuky191 authored Oct 30, 2024
2 parents 3eae5a6 + 1949203 commit f19b391
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 30 deletions.
1 change: 0 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

set shell := [ "python3", "-c"]

[private]
Expand Down
31 changes: 2 additions & 29 deletions onchain/Move.toml
Original file line number Diff line number Diff line change
@@ -1,39 +1,12 @@
[package]
name = "talus"
edition = "2024.beta"
authors = ["moshe beeri (moshe.beeri@gmail.com)"]
# license = "" # e.g., "MIT", "GPL", "Apache 2.0"
authors = ["Talus (engineering@talus.network)"]
license = "Business Source License 1.1"

[dependencies]
Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "devnet-v1.27.0" }
# Sui = { local = "../../../../../suibase/workdirs/localnet/sui-repo/crates/sui-framework/packages/sui-framework" }
# Sui = { local = "../../../sui/crates/sui-framework/packages/sui-framework" }
# Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/devnet" }

# 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]
talus = "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"

0 comments on commit f19b391

Please sign in to comment.