-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
34 lines (30 loc) · 854 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
30
31
32
33
34
[package]
name = "waifu2x"
version = "0.1.1"
authors = ["DarkSky"]
edition = "2021"
links = "waifu2x"
description = "A waifu2x-ncnn-vulkan Rust binding"
license = "AGPL-3.0-or-later"
homepage = "https://github.com/darkskygit/waifu2x.rs"
repository = "https://github.com/darkskygit/waifu2x.rs"
keywords = ["binding", "waifu2x", "ncnn", "vulkan"]
include = ["src/**/*", "waifu2x/**/*", "build.rs", "LICENSE", "README.md"]
readme = "README.md"
[features]
default = []
noise = []
noise_outside_model = []
upconv7 = []
upconv7_outside_model = []
model_bundled = []
[dependencies]
image = { version = "0.24.6", default-features = false }
libc = "0.2.146"
ncnn-sys = "0.2.0"
thiserror = "1.0.40"
[build-dependencies]
cmake = "0.1.50"
path-absolutize = "3.0.14"
[dev-dependencies]
image = { version = "0.24.6", default-features = false, features = ["png"] }