| Crates.io | loam-build |
| lib.rs | loam-build |
| version | 0.7.3 |
| created_at | 2023-08-31 17:35:56.599227+00 |
| updated_at | 2024-08-05 13:39:16.772271+00 |
| description | A library for gathering Subcontracts and Contracts |
| homepage | |
| repository | https://github.com/loambuild/loam/tree/main/crates/loam-build |
| max_upload_size | |
| id | 960228 |
| size | 15,226 |
This contains the low level tools used in loam-cli's build command AND loam-sdk-macro. Helps build any package in your workspace that is labeled as a loam package. It does this by looking through the workspace to find any crates where the Cargo.toml file indicates that this crate is a loam contract. Such crates will contain this snippet in their Cargo.toml:
[package.metadata.loam]
contract = true
# or, equivalently
package.metadata.loam.contract = true
It will find all these dependencies and builds them in the correct order.