Cargo.toml 918 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "nft-bridge"
  3. version = "0.1.0"
  4. edition = "2018"
  5. description = "Wormhole NFT bridge"
  6. [lib]
  7. crate-type = ["cdylib", "rlib"]
  8. [features]
  9. backtraces = ["cosmwasm-std/backtraces"]
  10. # use library feature to disable all init/handle/query exports
  11. library = []
  12. [dependencies]
  13. cosmwasm-std = { version = "0.16.0" }
  14. cosmwasm-storage = { version = "0.16.0" }
  15. schemars = "0.8.1"
  16. serde = { version = "1.0.103", default-features = false, features = ["derive"] }
  17. cw721-wrapped = { path = "../cw721-wrapped", features = ["library"] }
  18. cw721-base = { path = "../../contracts/cw721-base", version = "0.10.0", features = ["library"] }
  19. cw721 = { path = "../../packages/cw721" }
  20. wormhole = { path = "../wormhole", features = ["library"] }
  21. sha3 = { version = "0.9.1", default-features = false }
  22. hex = "0.4.2"
  23. bigint = "4"
  24. [dev-dependencies]
  25. cosmwasm-vm = { version = "0.16.0", default-features = false }
  26. serde_json = "1.0"