abstract-cw4-stake 2.0.0-rc

CW4 implementation of group based on staked tokens
Documentation
[package]
name = "abstract-cw4-stake"
version = "2.0.0-rc"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2021"
description = "CW4 implementation of group based on staked tokens"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
homepage = "https://cosmwasm.com"
documentation = "https://docs.cosmwasm.com"

exclude = [
  # Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication.
  "artifacts/*",
]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
crate-type = ["cdylib", "rlib"]

[features]
# for more explicit tests, cargo test --features=backtraces
backtraces = ["cosmwasm-std/backtraces"]
# use library feature to disable all instantiate/execute/query exports
library = []

[dependencies]
cosmwasm-schema = { version = "1.4.0" }
cw-utils = "1.0.1"
abstract-cw2 = { version = "1.2.2", path = "../../packages/cw2" }
abstract-cw4 = { version = "1.2.2", path = "../../packages/cw4" }
abstract-cw20 = { version = "2.0.0-rc", path = "../../packages/cw20" }
cw-controllers = { version = "1.1.2", path = "../../packages/controllers" }
cw-storage-plus = "1.1.0"
cosmwasm-std = { version = "1.4.0" }
schemars = "0.8.15"
serde = { version = "1.0.188", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.49" }
cw-orch = { workspace = true }