Cargo.toml 512 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "escrow-funding"
  3. version.workspace = true
  4. description = "Created with Bolt"
  5. edition = "2021"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "escrow_funding"
  9. [features]
  10. no-entrypoint = []
  11. no-idl = []
  12. no-log-ix-name = []
  13. cpi = ["no-entrypoint"]
  14. default = []
  15. idl-build = ["bolt-lang/idl-build"]
  16. anchor-debug = ["bolt-lang/anchor-debug"]
  17. custom-heap = []
  18. custom-panic = []
  19. [dependencies]
  20. bolt-lang.workspace = true
  21. serde = { version = "1.0", features = ["derive"] }
  22. component-small.workspace = true