junobuild-satellite

Crates.iojunobuild-satellite
lib.rsjunobuild-satellite
version
sourcesrc
created_at2024-02-04 17:55:13.903225
updated_at2024-12-01 13:51:58.546509
descriptionExtend Juno satellite functionality.
homepagehttps://juno.build
repositoryhttps://github.com/junobuild/juno
max_upload_size
id1126540
Cargo.toml error:TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
David Dal Busco (peterpeterparker)

documentation

https://docs.rs/junobuild-satellite

README

JunoBuild-Satellite

junobuild-satellite is a Rust crate that extends the functionality of Juno satellites. This library is intended for developers looking to enhance the capabilities of Juno.

Getting Started

To include junobuild-satellite in your Rust project, add it as a dependency in your Cargo.toml:

[dependencies]
junobuild-satellite = "*"

Replace "*" with the specific version you want to use, or omit the version to always use the latest version.

Usage

The primary feature of junobuild-satellite is the include_satellite! macro. It allows you to include all the stock satellite features required for a Juno satellite to work efficiently.

Example usage:

use junobuild_satellite::include_satellite;
include_satellite!();

By using the include_satellite! macro, you can effortlessly integrate all the necessary features into your satellite project.

Features

  • on_set_doc: Enables the on_set_doc feature.
  • on_set_many_docs: Enables the on_set_many_docs feature.
  • on_delete_doc: Enables the on_delete_doc feature.
  • on_delete_many_docs: Enables the on_delete_many_docs feature.
  • on_delete_filtered_docs: Enables the on_delete_filtered_docs feature.
  • on_upload_asset: Enables the on_upload_asset feature.
  • on_delete_asset: Enables the on_delete_asset feature.
  • on_delete_many_assets: Enables the on_delete_many_assets feature.
  • on_delete_filtered_assets: Enables the on_delete_filtered_assets feature.
  • on_init: Enables the on_init feature.
  • on_post_upgrade: Enables the on_post_upgrade feature.
  • assert_set_doc: Enables the assert_set_doc feature.
  • assert_delete_doc: Enables the assert_delete_doc feature.
  • assert_upload_asset: Enables the assert_upload_asset feature.
  • assert_delete_asset: Enables the assert_delete_asset feature.

These features are enabled by default and do not have additional dependencies.

Links & Resources

Here are some useful links:

  • Looking to get started? Check out the documentation.
  • Have a look at the LICENSE for information about licensing and limitation.
  • Have questions, comments or feedback? Join our Discord or OpenChat.
Commit count: 1463

cargo fmt