rhai-env 0.1.2

Environment package for Rhai
Documentation
#![warn(missing_docs)]
#![warn(clippy::missing_docs_in_private_items)]
#![deny(rustdoc::broken_intra_doc_links)]
#![doc = include_str!("../README.md")]
//!
//! ## API
//!
//! The following functions are defined in this package:
//!
#![doc = include_str!(concat!(env!("OUT_DIR"), "/rhai-env-docs.md"))]
#![doc = include_str!("../docs/highlight.html")]

use rhai::def_package;
use rhai::plugin::*;

pub(crate) mod env;

def_package! {
    /// Package for filesystem manipulation operations.
    pub EnvironmentPackage(lib) {
        combine_with_exported_module!(lib, "rhai_env", env::env_module);
    }
}