-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (36 loc) · 1.2 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
[workspace]
members = ["bioimg_codegen", "bioimg_gui", "bioimg_spec", "bioimg_runtime", "bioimg_zoo"]
resolver = "2"
[workspace.package]
version = "0.1.14"
authors = ["Tomaz Vieira<[email protected]>"]
edition = "2021"
rust-version="1.79"
license = "MIT"
repository = "https://github.com/kreshuklab/bioimg_rs"
[workspace.dependencies]
image = {version = "0.24.8", features = ["png"]}
iso8601-timestamp = "0.2.17"
ndarray = "0.15.6"
ndarray-npy = "0.8.1"
zip = {version = "2.2", default-features = false}
serde = "1.0.210"
serde_json = "1.0.128"
serde_yaml = "0.9.34+deprecated"
strum = "0.26.3"
thiserror = "1.0.63"
url = "2.5.2"
uuid = "1.10.0"
# FIXME: this is from the egui example app
[profile.release]
opt-level = 2 # fast and small wasm
# Optimize all dependencies even in debug builds:
#[profile.dev.package."*"]
#opt-level = 2
[patch.crates-io]
# If you want to use the bleeding edge version of egui and eframe:
# egui = { git = "https://github.com/emilk/egui", branch = "master" }
# eframe = { git = "https://github.com/emilk/egui", branch = "master" }
# If you fork https://github.com/emilk/egui you can test with:
# egui = { path = "../egui/crates/egui" }
# eframe = { path = "../egui/crates/eframe" }