-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (35 loc) · 1.14 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
[workspace]
resolver = "2"
members = ["machine-vision-shaders"]
[package]
name = "fly-eye"
version = "0.1.0"
authors = ["Andrew Straw <[email protected]>"]
edition = "2021"
rust-version = "1.76"
[dependencies]
anyhow = "1.0"
tracing = "0.1.41"
env_logger = "0.11"
clap = { version = "4.4.3", features = ["derive", "env", "string"] }
image = { version = "0.25", default-features = false, features = [
"jpeg",
"png",
"tiff",
] }
glium = "0.32.1"
winit = "0.27.5"
imagefmt = "4.0.0"
time = "0.3.9"
chrono = { version = "0.4.38", features = ["serde"] }
convert-image = "0.1.0"
machine-vision-formats = "0.1.3"
basic-frame = { git = "https://github.com/strawlab/strand-braid", rev = "5ce10ce2232b98bcba840cad04e432cc885add1a" }
ci2 = { git = "https://github.com/strawlab/strand-braid", rev = "5ce10ce2232b98bcba840cad04e432cc885add1a" }
ci2-pyloncxx = { git = "https://github.com/strawlab/strand-braid", rev = "5ce10ce2232b98bcba840cad04e432cc885add1a", optional = true }
machine-vision-shaders = { path = "machine-vision-shaders" }
[features]
default = ["backend_pyloncxx", "fly-eye"]
fly-eye = []
screen-quad = []
backend_pyloncxx = ["ci2-pyloncxx"]