abstract-cw1-subkeys 2.0.0-rc

Implement subkeys for authorizing native tokens as a cw1 proxy contract
Documentation
[package]
name = "abstract-cw1-subkeys"
version = "2.0.0-rc"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2021"
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
license = "Apache-2.0"
repository = "https://github.com/CosmWasm/cw-plus"
homepage = "https://cosmwasm.com"
documentation = "https://docs.cosmwasm.com"

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

[features]
backtraces = ["cosmwasm-std/backtraces"]
# use library feature to disable all instantiate/execute/query exports
library = []
test-utils = []

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

[dev-dependencies]
abstract-cw1-whitelist = { path = "../cw1-whitelist", features = [
  "library",
  "test-utils",
] }