anchor/examples/tutorial/basic-3/programs/puppet-master/Cargo.toml

20 lines
576 B
TOML
Raw Normal View History

2021-01-14 15:16:27 -08:00
[package]
name = "puppet-master"
version = "0.1.0"
description = "Created with Anchor"
edition = "2018"
[lib]
crate-type = ["cdylib", "lib"]
name = "puppet_master"
[features]
no-entrypoint = []
[dependencies]
borsh = { git = "https://github.com/project-serum/borsh", branch = "serum", features = ["serum-program"] }
solana-program = "1.4.3"
solana-sdk = { version = "1.3.14", default-features = false, features = ["program"] }
2021-01-14 15:19:29 -08:00
anchor = { git = "https://github.com/project-serum/anchor", features = ["derive"] }
2021-01-14 15:16:27 -08:00
puppet = { path = "../puppet", features = ["no-entrypoint"] }