shifted_vec 0.1.2

A growable datastructure with positive and negative indexing built on top of `std::vec::Vec` calculating the offset automatically.
Documentation
[package]
name = "shifted_vec"
version = "0.1.2"
authors = ["Stefan Schindler <dns2utf8@estada.ch>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://gitlab.com/dns2utf8/shifted_vec"
homepage = "https://gitlab.com/dns2utf8/shifted_vec"
documentation = "https://docs.rs/shifted_vec"
description = """
A growable datastructure with positive and negative indexing built on top of `std::vec::Vec` calculating the offset automatically.
"""
keywords = ["vec", "shifted", "container", "data-structures", "negative-index"]
categories = ["data-structures"]

include = [
    "**/*.rs",
    "Cargo.toml",
    "CHANGES.md",
    "LICENSE-APACHE",
    "LICENSE-MIT",
]

[dependencies]