[go: up one dir, main page]

forc-pkg 0.13.1

Building, locking, fetching and updating Sway projects as Forc packages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Building, locking, fetching and updating sway projects as Forc packages.
//!
//! A forc package represents a Sway project with a `Forc.toml` manifest file declared at its root.
//! The project should consist of one or more Sway modules under a `src` directory. It may also
//! declare a set of forc package dependencies within its manifest.

pub mod lock;
pub mod manifest;
mod pkg;

pub use lock::Lock;
pub use manifest::{Manifest, ManifestFile};
#[doc(inline)]
pub use pkg::*;