-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
47 lines (40 loc) · 1.34 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
[package]
name = "gyroflow-ofx"
version = "1.3.0"
authors = ["Ilya Epifanov <elijah.epifanov@gmail.com>", "Adrian <adrian.eddy@gmail.com>"]
license = "GPL-3.0-or-later"
edition = "2021"
description = "Gyroflow OpenFX plugin"
[lib]
name = "gyroflow_ofx"
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies]
ofx = "0.3"
log = "0.4"
itertools = "0.14"
lru = "0.12"
gyroflow-core = { git = "https://github.com/gyroflow/gyroflow.git", default-features = false, rev = "ffb9556", features = ["bundle-lens-profiles", "cache-gyro-metadata"] }
#gyroflow-core = { path = "../gyroflow/src/core", default-features = false, features = ["bundle-lens-profiles"] }
log-panics = "2.1"
rfd = { version = "0.15", default-features = false, features = ["xdg-portal", "async-std"] }
parking_lot = "0.12"
lazy_static = "1.5.0"
fastrand = "2.3.0"
simplelog = "0.12.2"
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies.metal]
version = "0.31.0"
[features]
default = ["use-opencl"]
use-opencl = ["gyroflow-core/use-opencl"]
[profile.release]
#opt-level = 3
#lto = true
#codegen-units = 1
[profile.dev]
opt-level = 2
[patch.crates-io]
ofx = { git = "https://github.com/AdrianEddy/ofx-rs.git", rev = "9f96aa7" }
ofx_sys = { git = "https://github.com/AdrianEddy/ofx-rs.git", rev = "9f96aa7" }
#ofx = { path = "../ofx-rs/ofx" }
#ofx_sys = { path = "../ofx-rs/ofx-sys" }