anchor/Cargo.toml

32 lines
962 B
TOML

[package]
name = "anchor-lang"
version = "0.0.0-alpha.0"
authors = ["Serum Foundation <foundation@projectserum.com>"]
repository = "https://github.com/project-serum/anchor"
edition = "2018"
license = "Apache-2.0"
description = "Solana Sealevel eDSL"
[features]
derive = []
default = []
[dependencies]
thiserror = "1.0.20"
solana-program = "1.4.3"
solana-sdk = { version = "1.3.14", default-features = false, features = ["program"] }
anchor-derive-accounts = { path = "./derive/accounts", version = "0.0.0-alpha.0" }
anchor-attribute-program = { path = "./attribute/program", version = "0.0.0-alpha.0" }
anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.0.0-alpha.0" }
anchor-attribute-account = { path = "./attribute/account", version = "0.0.0-alpha.0" }
serum-borsh = { version = "0.8.0-serum.1", features = ["serum-program"] }
[workspace]
members = [
"cli",
"syn",
"attribute/*",
"derive/*",
"spl",
]