# 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 are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "signal-transforms" version = "0.1.4" authors = ["Guo Fei "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A comprehensive Rust library for discrete and wavelet transforms, including DCT, Dct_2d, DWT2, and more." readme = "README.md" keywords = [ "dct", "dct2", ] license = "MIT" repository = "https://github.com/guofei9987/signal-transforms" [lib] name = "signal_transforms" path = "src/lib.rs" [[example]] name = "example_dct" path = "examples/example_dct.rs" [[test]] name = "test_dct" path = "tests/test_dct.rs" [[test]] name = "test_dct_raw" path = "tests/test_dct_raw.rs" [[bench]] name = "bench_dct" path = "benches/bench_dct.rs" harness = false [dependencies.nalgebra] version = "0.33.1" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.rand] version = "0.8" [features] dct_raw = [] default = []