[package]
edition = "2018"
name = "lfa"
version = "0.13.0"
authors = ["Tom Spooner <spooner10000@gmail.com>"]
description = "Native rust implementations of linear function approximators."
documentation = "https://docs.rs/lfa"
readme = "README.md"
keywords = ["function", "approximation", "linear", "ai", "rl"]
license = "MIT"
repository = "https://github.com/tspooner/lfa"
[dependencies.itertools]
version = "0.8"
[dependencies.lfa_derive]
version = "0.13"
[dependencies.ndarray]
version = "0.12"
[dependencies.rand]
version = "0.7"
optional = true
[dependencies.rand_distr]
version = "0.2"
optional = true
[dependencies.serde]
version = "1.0"
optional = true
[dependencies.spaces]
version = "5.0"
[dev-dependencies.quickcheck]
version = "0.9"
[dev-dependencies.rand]
version = "0.7"
[dev-dependencies.rand_distr]
version = "0.2"
[dev-dependencies.seahash]
version = "3.0"
[features]
default = []
random = ["rand", "rand_distr"]
serialize = ["serde", "serde/derive", "spaces/serialize", "ndarray/serde-1"]
[badges.coveralls]
branch = "master"
repository = "tspooner/lfa"
service = "github"
[badges.travis-ci]
branch = "master"
repository = "tspooner/lfa"