12345678910111213141516171819202122232425262728 |
- [package]
- name = "anchor-lang"
- version = "0.1.0"
- description = ""
- repository = "https://github.com/project-serum/serum-dex"
- edition = "2018"
- [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" }
- anchor-attribute-program = { path = "./attribute/program" }
- anchor-attribute-access-control = { path = "./attribute/access-control" }
- anchor-attribute-account = { path = "./attribute/account" }
- borsh = { git = "https://github.com/project-serum/borsh", branch = "serum", features = ["serum-program"] }
- [workspace]
- members = [
- "cli",
- "syn",
- "attribute/*",
- "derive/*",
- ]
|