interp 2.1.2

A Rust implementation of Matlab's interp1 function
Documentation
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
  rev: v4.6.0
  hooks:
  - id: check-added-large-files
  - id: check-toml
  - id: end-of-file-fixer
  - id: fix-byte-order-marker
  - id: mixed-line-ending
    args: [--fix=lf]
  - id: trailing-whitespace
    exclude: \.md$
- repo: local
  hooks:
  - id: cargo-clippy
    name: cargo clippy
    entry: cargo clippy
    language: system
    types: [rust]
    pass_filenames: false
    args: [--all-targets, --all-features, --, --D, warnings]
  - id: cargo-fmt
    name: cargo fmt
    entry: cargo fmt
    language: system
    types: [rust]
    pass_filenames: false
    args: [--all, --, --check]
  - id: cargo-test
    name: cargo test
    entry: cargo test
    language: system
    types: [rust]
    pass_filenames: false
    args: [--all-features]