-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 790 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 790 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
[package]
name = "processing_pyo3"
version = "0.0.1"
edition = "2024"
[lints]
workspace = true
[lib]
name = "mewnala"
crate-type = ["cdylib"]
[features]
default = ["wayland", "static-link"]
wayland = ["processing/wayland", "processing_glfw/wayland"]
static-link = ["processing_glfw/static-link"]
x11 = ["processing/x11"]
webcam = ["processing/webcam", "dep:processing_webcam"]
cuda = ["dep:processing_cuda", "processing/cuda"]
[dependencies]
pyo3 = { workspace = true, features = ["experimental-inspect", "multiple-pymethods"] }
processing = { workspace = true }
processing_webcam = { workspace = true, optional = true }
processing_glfw = { workspace = true }
bevy = { workspace = true, features = ["file_watcher"] }
png = "0.18"
processing_cuda = { workspace = true, optional = true }