-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1.02 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 1.02 KB
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
[package]
name = "matrix-eyes"
version = "0.1.7"
edition = "2024"
authors = ["Dmitrii Zolotukhin <contact@3d-net.nl>"]
repository = "https://github.com/zlogic/matrix-eyes"
license = "Apache-2.0"
rust-version = "1.92"
[dependencies]
burn = { version = "0.21", default-features = false, features = ["std", "store"] }
burn-store = { version = "0.21", default-features = false, features = ["std", "pytorch"] }
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
kamadak-exif = { version = "0.6", default-features = false }
indicatif = { version = "0.18", default-features = false }
rand = { version = "*", features = ["std", "std_rng", "thread_rng"] }
[features]
default = ["ndarray"]
autotune = ["burn/autotune"]
fusion = ["burn/fusion"]
ndarray = ["burn/ndarray"]
ndarray-accelerate = ["burn/ndarray", "burn/accelerate"]
cpu = ["burn/cpu"]
wgpu-metal = ["burn/metal"]
wgpu-spirv = ["burn/vulkan"]
cuda = ["burn/cuda"]
f16 = []
bf16 = []
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"