anchor/lang/derive/accounts/Cargo.toml

26 lines
663 B
TOML
Raw Normal View History

2020-12-31 15:48:06 -08:00
[package]
2021-01-09 22:03:14 -08:00
name = "anchor-derive-accounts"
2023-03-08 05:28:23 -08:00
version = "0.27.0"
2021-01-15 01:00:50 -08:00
authors = ["Serum Foundation <foundation@projectserum.com>"]
repository = "https://github.com/coral-xyz/anchor"
2021-01-15 01:00:50 -08:00
license = "Apache-2.0"
description = "Anchor Derive macro for accounts"
rust-version = "1.60"
2022-03-12 14:39:21 -08:00
edition = "2021"
2020-12-31 15:48:06 -08:00
[lib]
proc-macro = true
[features]
Feat: Optional Positional Accounts (#2101) * optional accounts initial implementation * cargo fmt * panic if Account related traits are run on none * Allow empty accounts to deserialize to None for optional accounts * implement constraints for optional accounts * optional accounts to idl gen * accountstruct helper method * implemented to_account_metas and infos * add test program * Rename optional to is_optional * added more traits * added TryKey error * fix has_one * update prelude * is_optional * add is_optional helper method * Add TryAccountInfos trait * improve constraint parser * initial work on TryToAccountInfo * Rename to TryToAccountInfo * finished implementing tryToAccountInfo * Using program method * Formatting * Fix program function call * Remove function return borrow * Fix access to program field * finished implementing tryToAccountInfo * add exit try_to_account_infos * descriptive ID path * try_to_account_info * fix close constraint * update test files * completed typescript optional accounts implementation * fix try accounts for init * update tests * fix to_account_metas * update tests * fix linting * remove types/node * update yarn.lock maybe? * update optional test * update optional test * update optional rust cli test * fix linting and tests * fix tests * update try_accounts to pass in accs during constraint gen * Add default impl for TryToAccountInfos * Removed TryToAccountInfos trait * Formatting * remove unneccesary traits and improve constraint gen drastically * fix exit generation * clippy * improve cross check error message * improve comments * more comments * update constraints hopefully good now? * add new errors to ts client * add new errors to ts client * update optional test * update anchor ts client * update misc crate * linting * temporarily comment out optional rs tests * update ts * remove local test files * linting * optional client tests * fix other lints to make the test pass * remove comments * remove misc-optional for now * update optional program * update optional program and client tests again * update optional program and client tests again again * added initialize tests that should pass * undo unrelated anchor.toml change * update close on optional program and improve tests * update optional program again. * update optional program and optional tests * fix has one error message * fix client example tests * update lockfile * update lockfile * regenerate lockfile * reset lockfile * reset ts yarn lockfile * update no caching tests * update exit codegen to use generate_optional_check * remove `try_to_account_infos` * update parser to ignore method calls in constraints * refactor and improve optional checks in constraints * add misc-optional program and tests * enable cpi for optional tests * Revert "enable cpi for optional tests" This reverts commit c864cd5d4f019e6bd5f93641e01bd82fc74041d4. * simplify misc tests * update version * fix rust version and resolve merge conflicts * prevent Option on composite accounts * hopefully fixed ts stuff? * hopefully fixed ts stuff? * testing * hopefully done? * update misc test * fix optional tests * fix ts * fix ts again! * linting urg * allow-missing-optionals feature * fix client tests * add bnjs types to tests Co-authored-by: febo <febo@kent.ac.uk> Co-authored-by: Henry-E <henry.elder@adaptcentre.ie>
2022-12-12 07:32:59 -08:00
allow-missing-optionals = ["anchor-syn/allow-missing-optionals"]
init-if-needed = ["anchor-syn/init-if-needed"]
default = []
anchor-debug = ["anchor-syn/anchor-debug"]
2020-12-31 15:48:06 -08:00
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
2021-04-04 00:55:56 -07:00
syn = { version = "1.0.60", features = ["full"] }
2020-12-31 15:48:06 -08:00
anyhow = "1.0.32"
2023-03-08 05:28:23 -08:00
anchor-syn = { path = "../../syn", version = "0.27.0" }