-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (25 loc) · 841 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "fast-neural-style-plugin"
authors = ["Christian <chriamue@gmail.com>"]
version = "0.1.0"
edition = "2021"
description = "Plugin to transfer image styles."
license = "MIT"
repository = "https://github.com/lenna-project/fast-neural-style-plugin"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
image = { version = "0.23", default-features = false, features = [
"png",
"jpeg",
] }
imageproc = { version = "0.22", default-features = false }
lenna_core = { git = "https://github.com/lenna-project/lenna-core", branch = "main" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tract-onnx = "0.15.8"
[target.wasm32-unknown-unknown.dependencies]
console_error_panic_hook = "0.1"
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
[dev-dependencies]
wasm-bindgen-test = "0.3.0"