seq 0.4.0

seq provides a lightweight container Seq<'a, T> of data sequences (LIFO), managing dynamic list without dynamic memory allocation involved. Sequences are stored in stack frames of function contexts. Each element of a sequence has an individual lifetime `'a` managed by the Rust compiler.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "seq"
version = "0.4.0"
authors = ["Frank Rehberger <frehberg@gmail.com>"]
description = "seq provides a lightweight container Seq<'a, T> of data sequences (LIFO), managing dynamic list without dynamic memory allocation involved. Sequences are stored in stack frames of function contexts. Each element of a sequence has an individual lifetime `'a` managed by the Rust compiler."
homepage = "https://github.com/frehberg/seq-rs.git"
documentation = "https://docs.rs/seq/0.4.0/seq/"
license = "Apache-2.0"
repository = "https://github.com/frehberg/seq-rs.git"

[dependencies]

[features]
benchmark = []