gdrust_utils 0.1.0

Utility tools for Rust Godot development
Documentation
/*!

# Utility tools

## Features

- Simple fuzzy logic

## Usage

*/

pub mod fuzzy;

/// Information about this package
pub mod version {
    /// Returns the current version of this package
    pub fn version() -> &'static str {
        env!("CARGO_PKG_VERSION")
    }
}