#vst #string #utf-16 #utf-8 #normalization

aloe-vst-string

Aloe VST String provides advanced string manipulation capabilities focusing on UTF-16 and UTF-8 encodings. It features Unicode normalization, string comparison modes, and essential VST string implementations for efficient, cross-platform development. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 3, 2025

#23 in #utf-16

49 downloads per month
Used in 11 crates (4 directly)

GPL-3.0 license

370KB
4K SLoC

Aloe VST String

Aloe VST String is a Rust crate that offers a comprehensive set of string manipulation facilities aligned with the VST (Virtual Studio Technology) standards. This crate offers robust UTF-16 and UTF-8 string handling capabilities, emphasizing memory safety and efficiency.

Features

  • Unicode Normalization: Implement enums for different Unicode normalization forms, allowing for efficient handling of international text.
  • String Comparison: Supports case-sensitive and case-insensitive comparisons, vital for string matching in diverse contexts.
  • Flexible String Interfaces: Interfaces like StringInterface, IStringResult, and IString provide structured methods for accessing and modifying string data.
  • Multiplatform Support: Offers compatibility with major operating systems (Linux, macOS).
  • Advanced Operations: Facilitates operations like string copying, length finding, and natural sorting.

Usage

To use Aloe VST String, add the following to your Cargo.toml:

[dependencies]
aloe-vst-string = "0.1.0"

Example

Here is a basic example demonstrating how to initialize a string and perform a few operations:

use aloe_vst_string::*;

fn main() {
    let mut my_string = String::from("Hello, VST!");
    println!("Length: {}", my_string.length());
    println!("Is wide string: {}", my_string.is_wide_string());
    my_string.to_upper();
    println!("Upper case: {}", my_string.text8());
}

Categories

This crate was generated by an AI model and may not be 100% accurate however it should be pretty good.

Contributing

Contributions to enhance the functionality and maintainability of Aloe VST String are welcome. Please check the contributing guidelines in the GitHub repository before submitting a pull request.

License

Aloe VST String is licensed under the GPL-3.0 License. See LICENSE for more details.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~13–27MB
~375K SLoC