github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/dev/wasm/cw4-stake/Cargo.toml (about)

     1  [package]
     2  name = "cw4-stake"
     3  version = "0.13.2"
     4  authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
     5  edition = "2018"
     6  description = "CW4 implementation of group based on staked tokens"
     7  license = "Apache-2.0"
     8  repository = "https://github.com/CosmWasm/cw-plus"
     9  homepage = "https://cosmwasm.com"
    10  documentation = "https://docs.cosmwasm.com"
    11  
    12  exclude = [
    13    # 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.
    14    "artifacts/*",
    15  ]
    16  
    17  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
    18  
    19  [lib]
    20  crate-type = ["cdylib", "rlib"]
    21  
    22  [features]
    23  # for more explicit tests, cargo test --features=backtraces
    24  backtraces = ["cosmwasm-std/backtraces"]
    25  # use library feature to disable all instantiate/execute/query exports
    26  library = []
    27  
    28  [dependencies]
    29  cw-utils = { path = "../../packages/utils", version = "0.13.2" }
    30  cw2 = { path = "../../packages/cw2", version = "0.13.2" }
    31  cw4 = { path = "../../packages/cw4", version = "0.13.2" }
    32  cw20 = { path = "../../packages/cw20", version = "0.13.2" }
    33  cw-controllers = { path = "../../packages/controllers", version = "0.13.2" }
    34  cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.2" }
    35  cosmwasm-std = { version = "1.0.0-beta8" }
    36  schemars = "0.8.1"
    37  serde = { version = "1.0.103", default-features = false, features = ["derive"] }
    38  thiserror = { version = "1.0.23" }
    39  
    40  [dev-dependencies]
    41  cosmwasm-schema = { version = "1.0.0-beta8" }