1234567891011121314151617181920 |
- [package]
- name = "zero-cpi"
- version = "0.1.0"
- description = "Created with Anchor"
- rust-version = "1.59"
- edition = "2021"
- [lib]
- crate-type = ["cdylib", "lib"]
- name = "zero_cpi"
- [features]
- no-entrypoint = []
- no-idl = []
- cpi = ["no-entrypoint"]
- default = []
- [dependencies]
- anchor-lang = { path = "../../../../lang" }
- zero-copy = { path = "../zero-copy", features = ["cpi"] }
|