-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (40 loc) · 1016 Bytes
/
Cargo.toml
File metadata and controls
45 lines (40 loc) · 1016 Bytes
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 = "glimpse"
version = "0.4.0"
edition = "2021"
license = "MIT"
description = "glimpse — 3D model thumbnail previews in Windows File Explorer (glTF/GLB, OBJ, Blockbench, Minecraft, Vintage Story)"
[lib]
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "glimpse-cli"
path = "src/bin/glimpse.rs"
[dependencies]
base64 = "0.22"
glam = "0.31"
gltf = "1.4"
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
json5 = "0.4"
obj-rs = "0.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
windows-core = "0.62.2"
[dependencies.windows]
version = "0.62.2"
features = [
"Win32_Foundation",
"Win32_System_Com",
"Win32_System_Com_StructuredStorage",
"Win32_System_Com_Marshal",
"Win32_UI_Shell",
"Win32_Graphics_Gdi",
"Win32_Storage_FileSystem",
"Win32_System_Memory",
"Win32_System_LibraryLoader",
"Win32_System_Ole",
"Win32_UI_Shell_PropertiesSystem",
]
[profile.release]
opt-level = 3
lto = true
strip = true