anchor/examples/tutorial/basic-0/programs/basic-0/Cargo.toml

20 lines
498 B
TOML
Raw Normal View History

2021-01-02 16:24:35 -08:00
[package]
2021-01-04 18:29:16 -08:00
name = "basic-0"
2021-01-02 16:24:35 -08:00
version = "0.1.0"
2021-01-04 18:29:16 -08:00
description = "Created with Anchor"
2021-01-02 16:24:35 -08:00
edition = "2018"
[lib]
2021-01-14 17:09:15 -08:00
crate-type = ["cdylib", "lib"]
2021-01-04 18:29:16 -08:00
name = "basic_0"
2021-01-02 16:24:35 -08:00
2021-01-14 17:09:15 -08:00
[features]
no-entrypoint = []
cpi = ["no-entrypoint"]
2021-01-02 16:24:35 -08:00
[dependencies]
2021-01-14 23:19:52 -08:00
serum-borsh = { version = "0.7.2+serum.1", features = ["serum-program"] }
2021-01-02 16:24:35 -08:00
solana-program = "1.4.3"
solana-sdk = { version = "1.3.14", default-features = false, features = ["program"] }
2021-01-14 22:35:50 -08:00
anchor-lang = { git = "https://github.com/project-serum/anchor", features = ["derive"] }