Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "wormhole-migration"
  3. version = "0.1.0"
  4. description = "Created with Rocksalt"
  5. edition = "2018"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "wormhole_migration"
  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. borsh = "=0.9.1"
  18. byteorder = "1.4.3"
  19. rocksalt = { path = "../solitaire/rocksalt" }
  20. solitaire = { path = "../solitaire/program" }
  21. sha3 = "0.9.1"
  22. solana-program = "*"
  23. spl-token = { version = "=3.2.0", features = ["no-entrypoint"] }
  24. solitaire-client = { path = "../solitaire/client", optional = true }
  25. wasm-bindgen = { version = "0.2.74", features = ["serde-serialize"], optional = true }
  26. serde = { version = "1.0", features = ["derive"] }
  27. rand = { version = "0.7.3", optional = true }
  28. [dev-dependencies]
  29. hex = "*"
  30. hex-literal = "0.3.1"
  31. libsecp256k1 = { version = "0.3.5", features = [] }
  32. solana-client = "=1.9.4"
  33. solana-sdk = "=1.9.4"
  34. spl-token = { version = "=3.2.0", features = ["no-entrypoint"] }
  35. [patch.crates-io]
  36. memmap2 = { path = "../bridge/memmap2-rs" }