langis 0.1.1

A signal is a structure that can yield an infinite amount of data. The API is very similar to `std::iter::Iterator` but with the assumption that it will never end.
Documentation
[package]
name = "langis"
version = "0.1.1"
authors = ["Gymore <gymore.contact@gmail.com>"]
edition = "2018"
readme = "readme.md"
repository = "https://github.com/gymore-z/langis"
license-file = "LICENSE.txt"
keywords = [ "dsp", "sig", "signal", "iter", "iterator" ]
categories = [ "no-std", "science", "mathematics", "algorithms" ]
documentation = "https://docs.rs/langis/"
description = """
A signal is a structure that can yield an infinite amount of data. The API is very
similar to `std::iter::Iterator` but with the assumption that it will never end.
"""

[features]
default = [ "rand-std", "num-std" ]

rand-std = [ "rand/std" ]

num-std = [ "num-traits/std" ]
num-libm = [ "num-traits/libm" ]

[dependencies.num-traits]
version = "0.2"
optional = true
default-features = false

[dependencies.rand]
version = "0.7"
optional = true
default-features = false