anchor/lang/Cargo.toml

24 lines
930 B
TOML
Raw Normal View History

2021-01-30 05:14:45 -08:00
[package]
name = "anchor-lang"
2021-01-31 06:32:30 -08:00
version = "0.1.0"
2021-01-30 05:14:45 -08:00
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]
2021-01-31 06:32:30 -08:00
anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.1.0" }
anchor-attribute-account = { path = "./attribute/account", version = "0.1.0" }
anchor-attribute-error = { path = "./attribute/error", version = "0.1.0" }
anchor-attribute-program = { path = "./attribute/program", version = "0.1.0" }
anchor-attribute-state = { path = "./attribute/state", version = "0.1.0" }
2021-02-07 07:45:10 -08:00
anchor-attribute-interface = { path = "./attribute/interface", version = "0.1.0" }
2021-01-31 06:32:30 -08:00
anchor-derive-accounts = { path = "./derive/accounts", version = "0.1.0" }
2021-01-31 06:08:32 -08:00
serum-borsh = "0.8.1-serum.1"
2021-01-30 05:14:45 -08:00
solana-program = "=1.5.0"
thiserror = "1.0.20"