1234567891011121314151617181920212223242526 |
- [package]
- name = "cfo"
- version = "0.1.0"
- description = "Created with Anchor"
- rust-version = "1.60"
- edition = "2021"
- [lib]
- crate-type = ["cdylib", "lib"]
- name = "cfo"
- [features]
- no-entrypoint = []
- no-idl = []
- cpi = ["no-entrypoint"]
- default = ["test"]
- test = []
- [dependencies]
- anchor-lang = { path = "../../../../lang" }
- anchor-spl = { path = "../../../../spl" }
- spl-token = { version = "3.5.0", features = ["no-entrypoint"] }
- swap = { path = "../../deps/swap/programs/swap", features = ["cpi"] }
- serum_dex = { path = "../../deps/openbook-dex/dex", features = ["no-entrypoint"] }
- registry = { path = "../../deps/stake/programs/registry", features = ["cpi"] }
- lockup = { path = "../../deps/stake/programs/lockup", features = ["cpi"] }
|