-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (47 loc) · 1.28 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
46
47
48
49
50
51
52
[workspace.package]
version = "0.2.0"
license = "MPL-2.0 OR LGPL-2.1-or-later"
edition = "2021"
rust-version = "1.80"
repository = "https://github.com/gufo-rs/gufo"
[profile.release]
lto = true
codegen-units = 1
[workspace]
resolver = "2"
members = [
"gufo",
"gufo-common",
"gufo-exif",
"gufo-jpeg",
"gufo-png",
"gufo-tiff",
"gufo-tools",
"gufo-webp",
"gufo-xmp",
"tests",
]
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
arithmetic_side_effects = "forbid"
cast_possible_truncation = "forbid"
cast_possible_wrap = "forbid"
[workspace.dependencies]
chrono = { version = "0.4.38", default-features = false, features = ["std"] }
gufo = { version = "0.2.0", path = "gufo" }
gufo-common = { version = "0.2.0", path = "gufo-common" }
gufo-exif = { version = "0.2.0", path = "gufo-exif" }
gufo-jpeg = { version = "0.2.0", path = "gufo-jpeg" }
gufo-png = { version = "0.2.0", path = "gufo-png" }
gufo-tiff = { version = "0.2.0", path = "gufo-tiff" }
gufo-webp = { version = "0.2.0", path = "gufo-webp" }
gufo-xmp = { version = "0.2.0", path = "gufo-xmp" }
hex = "0.4.0"
miniz_oxide = "0.8.0"
paste = "1.0.15"
serde = { version = "1.0.202", features = ["derive"] }
static_assertions = "1.1.0"
thiserror = "2.0.3"
tracing = "0.1"
xml-rs = "0.8.19"