[package]
edition = "2021"
name = "multisig"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Created with Anchor"
readme = false
license = "Apache-2.0"
repository = "https://github.com/abelmarnk/Multisig"
[features]
cpi = ["no-entrypoint"]
default = []
idl-build = [
"anchor-lang/idl-build",
"anchor-spl/idl-build",
]
no-entrypoint = []
no-idl = []
no-log-ix-name = []
test-helpers = []
[lib]
name = "multisig"
crate-type = [
"cdylib",
"lib",
]
path = "src/lib.rs"
[[test]]
name = "add_asset_member"
path = "tests/add_asset_member.rs"
[[test]]
name = "add_asset_mint"
path = "tests/add_asset_mint.rs"
[[test]]
name = "add_asset_token"
path = "tests/add_asset_token.rs"
[[test]]
name = "add_group_member"
path = "tests/add_group_member.rs"
[[test]]
name = "change_asset_config"
path = "tests/change_asset_config.rs"
[[test]]
name = "change_group_config"
path = "tests/change_group_config.rs"
[[test]]
name = "clean_up_asset_member"
path = "tests/clean_up_asset_member.rs"
[[test]]
name = "close_config_proposal"
path = "tests/close_config_proposal.rs"
[[test]]
name = "close_config_vote_record"
path = "tests/close_config_vote_record.rs"
[[test]]
name = "close_normal_proposal"
path = "tests/close_normal_proposal.rs"
[[test]]
name = "close_normal_vote_record"
path = "tests/close_normal_vote_record.rs"
[[test]]
name = "close_proposal_transaction"
path = "tests/close_proposal_transaction.rs"
[[test]]
name = "create_config_proposal"
path = "tests/create_config_proposal.rs"
[[test]]
name = "create_group"
path = "tests/create_group.rs"
[[test]]
name = "create_normal_proposal"
path = "tests/create_normal_proposal.rs"
[[test]]
name = "create_proposal_transaction"
path = "tests/create_proposal_transaction.rs"
[[test]]
name = "emergency_reset"
path = "tests/emergency_reset.rs"
[[test]]
name = "execute_proposal_transaction"
path = "tests/execute_proposal_transaction.rs"
[[test]]
name = "integration_config"
path = "tests/integration_config.rs"
[[test]]
name = "integration_normal"
path = "tests/integration_normal.rs"
[[test]]
name = "minimum_timelock"
path = "tests/minimum_timelock.rs"
[[test]]
name = "pause_mode"
path = "tests/pause_mode.rs"
[[test]]
name = "remove_asset_member"
path = "tests/remove_asset_member.rs"
[[test]]
name = "remove_group_member"
path = "tests/remove_group_member.rs"
[[test]]
name = "state_logic"
path = "tests/state_logic.rs"
[[test]]
name = "vote_on_config_proposal"
path = "tests/vote_on_config_proposal.rs"
[[test]]
name = "vote_on_normal_proposal"
path = "tests/vote_on_normal_proposal.rs"
[dependencies.anchor-lang]
version = "0.31.1"
features = ["init-if-needed"]
[dependencies.anchor-spl]
version = "0.31.1"
[dev-dependencies.anyhow]
version = "1.0.100"
[dev-dependencies.litesvm]
version = "0.6.1"
[dev-dependencies.rand]
version = "0.9.2"
[dev-dependencies.solana-sdk]
version = "2.2.1"
[dev-dependencies.spl-associated-token-account]
version = "6.0.0"
[dev-dependencies.spl-token]
version = "7.0"