Cargo.toml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. [package]
  2. name = "nft-bridge"
  3. version = "0.1.0"
  4. description = "Created with Rocksalt"
  5. edition = "2018"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "nft_bridge"
  9. [features]
  10. no-entrypoint = ["solitaire/no-entrypoint", "rand"]
  11. trace = ["solitaire/trace"]
  12. wasm = ["no-entrypoint", "wasm-bindgen"]
  13. client = ["solitaire-client", "solitaire/client", "no-entrypoint"]
  14. cpi = ["no-entrypoint"]
  15. default = []
  16. [dependencies]
  17. wormhole-bridge-solana = { path = "../../../bridge/program", features = ["no-entrypoint", "cpi"] }
  18. borsh = "=0.9.1"
  19. bstr = "0.2.16"
  20. byteorder = "1.4.3"
  21. rocksalt = { path = "../../../solitaire/rocksalt" }
  22. solitaire = { path = "../../../solitaire/program" }
  23. sha3 = "0.9.1"
  24. solana-program = "*"
  25. spl-token = { version = "=3.2.0", features = ["no-entrypoint"] }
  26. spl-associated-token-account = { version = "1.0.2" }
  27. primitive-types = { version = "0.9.0", default-features = false }
  28. solitaire-client = { path = "../../../solitaire/client", optional = true }
  29. spl-token-metadata = { path = "../../token_bridge/token-metadata" }
  30. wasm-bindgen = { version = "0.2.74", features = ["serde-serialize"], optional = true }
  31. serde = { version = "1.0", features = ["derive"] }
  32. rand = { version = "0.7.3", optional = true }
  33. [dev-dependencies]
  34. hex = "*"
  35. hex-literal = "0.3.1"
  36. libsecp256k1 = { version = "0.3.5", features = [] }
  37. solana-client = "=1.9.4"
  38. solana-sdk = "=1.9.4"
  39. spl-token = { version = "=3.2.0", features = ["no-entrypoint"] }
  40. spl-token-metadata = { path = "../../token_bridge/token-metadata" }