Cargo.toml 711 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "cfo"
  3. version = "0.1.0"
  4. description = "Created with Anchor"
  5. edition = "2018"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "cfo"
  9. [features]
  10. no-entrypoint = []
  11. no-idl = []
  12. cpi = ["no-entrypoint"]
  13. default = ["test"]
  14. test = []
  15. [dependencies]
  16. anchor-lang = { path = "../../../../lang" }
  17. anchor-spl = { path = "../../../../spl" }
  18. spl-token = { version = "3.1.1", features = ["no-entrypoint"] }
  19. swap = { path = "../../deps/swap/programs/swap", features = ["cpi"] }
  20. serum_dex = { path = "../../deps/serum-dex/dex", features = ["no-entrypoint"] }
  21. registry = { path = "../../deps/stake/programs/registry", features = ["cpi"] }
  22. lockup = { path = "../../deps/stake/programs/lockup", features = ["cpi"] }