anchor/tests/zero-copy/programs/zero-copy/Cargo.toml

26 lines
473 B
TOML
Raw Normal View History

2021-04-17 12:07:48 -07:00
[package]
name = "zero-copy"
version = "0.1.0"
description = "Created with Anchor"
2022-03-12 14:39:21 -08:00
rust-version = "1.56"
edition = "2021"
2021-04-17 12:07:48 -07:00
[lib]
crate-type = ["cdylib", "lib"]
name = "zero_copy"
[features]
no-entrypoint = []
no-idl = []
cpi = ["no-entrypoint"]
default = []
test-bpf = []
2021-04-17 12:07:48 -07:00
[dependencies]
anchor-lang = { path = "../../../../lang" }
[dev-dependencies]
anchor-client = { path = "../../../../client", features = ["debug"] }
bytemuck = "1.4.0"
2022-12-10 02:18:18 -08:00
solana-program-test = "1.14.9"