Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [package]
  2. name = "token-bridge"
  3. version = "0.1.0"
  4. description = "Created with Rocksalt"
  5. edition = "2018"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "token_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. primitive-types = { version = "0.9.0", default-features = false }
  27. solitaire-client = { path = "../../../solitaire/client", optional = true }
  28. spl-token-metadata = { path = "../token-metadata" }
  29. wasm-bindgen = { version = "0.2.74", features = ["serde-serialize"], optional = true }
  30. serde = { version = "1.0", features = ["derive"] }
  31. rand = { version = "0.7.3", optional = true }
  32. [dev-dependencies]
  33. hex = "*"
  34. hex-literal = "0.3.1"
  35. libsecp256k1 = { version = "0.3.5", features = [] }
  36. solana-client = "=1.9.4"
  37. solana-sdk = "=1.9.4"
  38. spl-token = { version = "=3.2.0", features = ["no-entrypoint"] }
  39. spl-token-metadata = { path = "../token-metadata" }