anchor/lang/Cargo.toml

28 lines
1.0 KiB
TOML
Raw Normal View History

2021-01-30 05:14:45 -08:00
[package]
name = "anchor-lang"
2021-04-13 12:11:58 -07:00
version = "0.4.3"
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-04-13 12:11:58 -07:00
anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.4.3" }
anchor-attribute-account = { path = "./attribute/account", version = "0.4.3" }
anchor-attribute-error = { path = "./attribute/error", version = "0.4.3" }
anchor-attribute-program = { path = "./attribute/program", version = "0.4.3" }
anchor-attribute-state = { path = "./attribute/state", version = "0.4.3" }
anchor-attribute-interface = { path = "./attribute/interface", version = "0.4.3" }
anchor-attribute-event = { path = "./attribute/event", version = "0.4.3" }
2021-04-17 12:07:48 -07:00
anchor-derive-accounts = { path = "./derive/accounts", version = "0.4.3" }
base64 = "0.13.0"
2021-03-23 10:40:32 -07:00
borsh = "0.8.2"
2021-04-17 12:07:48 -07:00
bytemuck = "1.4.0"
2021-04-04 00:55:56 -07:00
solana-program = "1.6.3"
2021-02-07 22:37:40 -08:00
thiserror = "1.0.20"