this is the backend of the project
This repository uses the recommended structure for a Soroban project:
.
├── contracts
│ └── hello_world
│ ├── src
│ │ ├── lib.rs
│ │ └── test.rs
│ └── Cargo.toml
├── Cargo.toml
└── README.md
- New Soroban contracts can be put in
contracts
, each in their own directory. There is already aexample
contract in there to get you started. - Contracts should have their own
Cargo.toml
files that rely on the top-levelCargo.toml
workspace for their dependencies.