Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [package]
  2. name = "ntt-global-accountant"
  3. version = "0.1.0"
  4. authors = ["Wormhole Project Contributors"]
  5. edition = "2021"
  6. [lib]
  7. crate-type = ["cdylib", "rlib"]
  8. [features]
  9. backtraces = ["cosmwasm-std/backtraces"]
  10. # use library feature to disable all instantiate/execute/query exports
  11. library = []
  12. [dependencies]
  13. accountant = "0.1.0"
  14. anyhow = "1"
  15. base64 = "0.13"
  16. byteorder = "1.5.0"
  17. cosmwasm-schema = "1"
  18. cosmwasm-std = "1"
  19. cw-storage-plus = "0.13.2"
  20. cw_transcode = "0.1.0"
  21. cw2 = "0.13.2"
  22. hex = { version = "0.4.3", features = ["serde"] }
  23. ntt-messages = { git = "https://github.com/wormhole-foundation/example-native-token-transfers.git", rev = "cd1f8fe13b9aba3bf1a38938d952841c98cb7288" }
  24. schemars = "0.8.8"
  25. serde = { version = "1.0.137", default-features = false, features = ["derive"] }
  26. serde_wormhole.workspace = true
  27. thiserror = { version = "1.0.31" }
  28. tinyvec = { version = "1.6", default-features = false, features = ["alloc", "serde"]}
  29. wormhole-bindings = "0.1.0"
  30. wormhole-io = "0.1.3"
  31. wormhole-sdk = { workspace = true, features = ["schemars"] }
  32. [dev-dependencies]
  33. anyhow = { version = "1", features = ["backtrace"] }
  34. cw-multi-test = "0.13.2"
  35. serde-json-wasm = "0.4"
  36. wormhole-bindings = { version = "0.1", features = ["fake"] }