stylus_tools/
lib.rs

1// Copyright 2025, Offchain Labs, Inc.
2// For licensing, see https://github.com/OffchainLabs/stylus-sdk-rs/blob/main/licenses/COPYRIGHT.md
3
4//! Tools for working with stylus projects.
5// TODO: #![doc = include_str!("../README.md")]
6
7#[macro_use]
8mod macros;
9
10pub mod core;
11pub(crate) mod error;
12pub mod manifest;
13pub mod ops;
14pub mod precompiles;
15pub mod verification;
16pub mod wasm;
17
18pub mod utils;
19
20pub mod deployer;
21#[cfg(feature = "integration-tests")]
22pub mod devnet;
23pub use deployer::*;
24pub mod verifier;
25pub use verifier::*;
26mod activator;
27mod checker;
28pub mod exporter;
29
30pub use activator::*;
31pub use checker::*;
32
33pub use error::{Error, Result};
34pub use exporter::*;