ring-seq 0.3.0

Circular (ring) sequence operations for Rust slices — rotations, reflections, necklace canonical forms, symmetry detection, and more.
Documentation
[package]
name = "ring-seq"
version = "0.3.0"
edition = "2021"
authors = ["Mario Callisto <mario.callisto@proton.me>"]
description = "Circular (ring) sequence operations for Rust slices — rotations, reflections, necklace canonical forms, symmetry detection, and more."
license = "MIT OR Apache-2.0"
repository = "https://github.com/scala-tessella/ring-seq-rs"
homepage = "https://github.com/scala-tessella/ring-seq-rs"
readme = "README.md"
keywords = ["circular", "ring", "sequence", "necklace", "symmetry"]
categories = ["algorithms", "data-structures"]
rust-version = "1.63"
exclude = [".github/", ".idea/", ".claude/"]

[features]
default = ["alloc"]
# Enables the Vec-returning convenience methods on `Circular` and the
# legacy `RingSeq` trait. Without this feature, only the allocation-free
# core (the `Circular` wrapper and its element iterator) is available.
alloc = []

[dependencies]