Cargo.toml 891 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "bridge_stub"
  3. version = "0.1.0"
  4. description = "Wormhole bridge core contract"
  5. edition = "2018"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "bridge_stub"
  9. [features]
  10. client = ["solitaire/client", "solitaire-client", "no-entrypoint"]
  11. cpi = ["no-entrypoint"]
  12. default = []
  13. no-entrypoint = ["solitaire/no-entrypoint"]
  14. trace = ["solitaire/trace"]
  15. [dependencies]
  16. borsh = "=0.9.3"
  17. byteorder = "1.4.3"
  18. primitive-types = { version = "0.9.0", default-features = false }
  19. sha3 = "0.9.1"
  20. solana-program = "=1.10.13"
  21. solitaire-client = { path = "../../solitaire/client", optional = true }
  22. solitaire = { path = "../../solitaire/program" }
  23. wormhole-bridge-solana = { path = "../program", features = ["no-entrypoint"] }
  24. [dev-dependencies]
  25. hex = "*"
  26. rand = "0.7.3"
  27. hex-literal = "0.3.1"
  28. libsecp256k1 = { version = "0.3.5", features = [] }
  29. solana-client = "=1.10.13"
  30. solana-sdk = "=1.10.13"