-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (39 loc) · 1.18 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
38
39
40
41
42
43
44
45
[package]
name = "converter_buddy"
version = "0.2.1"
edition = "2021"
license = "MIT"
description = "File format conversion library. Provides conversion utilities between files with different formats."
authors = ["Attilio Oliva <[email protected]>"]
readme = "README.md"
# crates.io metadata
documentation = "https://docs.rs/converter_buddy"
repository = "https://github.com/attilio-oliva/converter-buddy"
homepage = "https://github.com/attilio-oliva/converter-buddy"
categories = ["encoding", "multimedia::images", "multimedia::encoding"]
keywords = ["convert", "file", "format", "extension"]
[dependencies]
once_cell = "1.10.0"
image = "0.24.1"
resvg = "0.22.0"
usvg = "0.22.0"
tiny-skia = "0.6.3"
strum = { version = "0.24.0", features = ["derive"]}
strum_macros = "0.24"
pdf-writer = "0.6"
miniz_oxide = "0.5.3"
derive_builder = "0.12.0"
paste = "1.0.12"
smart-default = "0.6.0"
[dev-dependencies]
test-case = "3.1.0"
[features]
default = ["formats", "converters", "io", "decoders"]
formats = []
converters = ["formats", "decoders", "converters-info"]
io = ["converters", "converters-info"]
decoders = []
converters-info = ["formats"]
[lib]
name = "converter_buddy"
path = "./src/lib.rs"