forked from kornelski/cavif-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 1.04 KB
/
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
35
36
37
[package]
name = "cavif"
description = "Encodes images in AVIF format (image2avif converter). Pure Rust."
version = "0.6.7"
authors = ["Kornel Lesiński <[email protected]>"]
edition = "2018"
license = "BSD-3-Clause"
readme = "README.md"
keywords = ["avif", "png2avif", "jpeg2avif", "convert", "av1"]
categories = ["command-line-utilities", "multimedia::images", "multimedia::encoding"]
homepage = "https://lib.rs/cavif"
repository = "https://github.com/kornelski/cavif-rs"
include = ["README.md", "LICENSE", "Cargo.toml", "/src/*.rs"]
[dependencies]
ravif = { version = "0.6.5", path = "./ravif", default-features = false }
lodepng = "3.4.3"
num_cpus = "1.13.0"
rayon = "1.5.0"
rgb = "0.8.25"
cocoa_image = { version = "1.0.4", optional = true }
imgref = "1.7.1"
jpeg-decoder = "0.1.22"
clap = { version = "2.33.3", default-features = false, features = ["color", "suggestions", "wrap_help"] }
[features]
default = ["asm"]
asm = ["ravif/asm"]
[profile.release]
lto = true
[profile.dev.package."*"]
opt-level = 2
[dev-dependencies]
avif-parse = "0.13.1"