> For the complete documentation index, see [llms.txt](https://0xkowloon.gitbook.io/anchor-for-evm-developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://0xkowloon.gitbook.io/anchor-for-evm-developers/feature-dependencies.md).

# Feature Dependencies

**Solana**

**Cargo.toml**

```
[features]
default = ["feature-you-want-to-enable"]
feature-you-want-to-enable = ["dependency-1/feature-name", "dependency-2/feature-name"]

[dependencies]
dependency-1 = { version = "x.x.x" }
dependency-2 = { version = "x.x.x" }
```
