12345678910111213141516171819202122232425 |
- [package]
- name = "zero-copy"
- version = "0.1.0"
- description = "Created with Anchor"
- rust-version = "1.60"
- edition = "2021"
- [lib]
- crate-type = ["cdylib", "lib"]
- name = "zero_copy"
- [features]
- no-entrypoint = []
- no-idl = []
- cpi = ["no-entrypoint"]
- default = []
- test-bpf = []
- [dependencies]
- anchor-lang = { path = "../../../../lang" }
- bytemuck = {version = "1.4.0", features = ["derive", "min_const_generics"]}
- [dev-dependencies]
- anchor-client = { path = "../../../../client", features = ["debug", "async"] }
- solana-program-test = ">=1.16, <1.18"
|