Cargo.toml 666 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "system-simple-movement"
  3. description = "Created with Bolt"
  4. version = { workspace = true }
  5. authors = { workspace = true }
  6. repository = { workspace = true }
  7. homepage = { workspace = true }
  8. license = { workspace = true }
  9. edition = { workspace = true }
  10. [lib]
  11. crate-type = ["cdylib", "lib"]
  12. name = "system_simple_movement"
  13. [features]
  14. no-entrypoint = []
  15. no-idl = []
  16. no-log-ix-name = []
  17. cpi = ["no-entrypoint"]
  18. default = []
  19. idl-build = ["anchor-lang/idl-build"]
  20. [dependencies]
  21. anchor-lang = { workspace = true }
  22. serde = { workspace = true }
  23. bolt-lang = { path = "../../crates/bolt-lang" }
  24. bolt-types = { version = "0.1.6", path = "../../crates/types" }