-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
18 lines (18 loc) · 618 Bytes
/
Cargo.toml
File metadata and controls
18 lines (18 loc) · 618 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
workspace = { members = ["wasm_demo"] }
[package]
name = "butter2d"
version = "0.1.5"
edition = "2021"
authors = ["altunenes <enesaltun2@gmail.com>"]
license = "MIT"
rust-version = "1.85.0"
description = "Butterworth filter for image processing."
repository = "https://github.com/altunenes/butter2d"
documentation = "https://docs.rs/butter2d/latest/butter2d/"
categories = ["multimedia::images", "science", "science::neuroscience"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
image = "0.25.6"
ndarray = "0.16.1"
rustfft = "6.2.0"
nalgebra = "0.33.2"