Ayush bd26f88e44 bumped versions 5 mēneši atpakaļ
..
anchor bd26f88e44 bumped versions 5 mēneši atpakaļ
native 6d134a7a97 fix: Skip ignoring spl2.0 dependency issue (#2) (#109) 1 gadu atpakaļ
README.md a2831045ac reorg to match readme 3 gadi atpakaļ

README.md

Recommended Program Layout

This is the typical layout for a Solana program as it grows in size and begins to require multiple Rust files. You'll notice a lot of the programs in the Solana Program Library follow this format.

Note: You can structure your Rust src folder however you wish - provided you follow Cargo's repository structure standards. You don't have to follow this pattern, but it's here so you can recognize other programs, too.

You can see that the structure for a native repository is very similar to that of the anchor repository. The only difference is the inclusion of a processor.rs in the native setup - one of the many things Anchor abstracts away for you!