anchor/lang/Cargo.toml

44 lines
1.5 KiB
TOML
Raw Normal View History

2021-01-30 05:14:45 -08:00
[package]
name = "anchor-lang"
2021-08-04 12:29:38 -07:00
version = "0.12.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 = []
anchor-debug = [
"anchor-attribute-access-control/anchor-debug",
"anchor-attribute-account/anchor-debug",
"anchor-attribute-error/anchor-debug",
"anchor-attribute-event/anchor-debug",
"anchor-attribute-interface/anchor-debug",
"anchor-attribute-program/anchor-debug",
"anchor-attribute-program/anchor-debug",
"anchor-attribute-state/anchor-debug",
"anchor-derive-accounts/anchor-debug"
]
2021-01-30 05:14:45 -08:00
[dependencies]
2021-08-04 12:29:38 -07:00
anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.12.0" }
anchor-attribute-account = { path = "./attribute/account", version = "0.12.0" }
anchor-attribute-error = { path = "./attribute/error", version = "0.12.0" }
anchor-attribute-program = { path = "./attribute/program", version = "0.12.0" }
anchor-attribute-state = { path = "./attribute/state", version = "0.12.0" }
anchor-attribute-interface = { path = "./attribute/interface", version = "0.12.0" }
anchor-attribute-event = { path = "./attribute/event", version = "0.12.0" }
anchor-derive-accounts = { path = "./derive/accounts", version = "0.12.0" }
2021-04-17 12:07:48 -07:00
base64 = "0.13.0"
borsh = "0.9"
2021-04-17 12:07:48 -07:00
bytemuck = "1.4.0"
solana-program = "=1.7.8"
2021-02-07 22:37:40 -08:00
thiserror = "1.0.20"
2021-07-19 23:21:13 -07:00
#
# Needed to prevent the build from failing. This is a transitive dependency of
# solana-program.
#
zeroize = "=1.3.0"