Skip to content

Commit

Permalink
Fix author and licence of the onchain framework (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
pb-at-talus authored Oct 29, 2024
1 parent 34cd82a commit 34aef80
Showing 1 changed file with 2 additions and 29 deletions.
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 ([email protected])"]
# license = "" # e.g., "MIT", "GPL", "Apache 2.0"
authors = ["Talus ([email protected])"]
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 34aef80

Please sign in to comment.