-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (53 loc) · 1.21 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (53 loc) · 1.21 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "corrosiff"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0"
description = "Rust-based tools for parsing and modifying `.siff` FLIM data files."
keywords = ["flim", "microscopy", "scientific imaging", "siff", "neuroscience"]
rust-version = "1.66.0"
repository = "https://github.com/MaimonLab/Corrosiff.git"
[dependencies]
binrw = "*"
bytemuck = {version = "1.16.0", features = ["extern_crate_std"]}
itertools = "*"
ndarray = {version = "*", features = ["rayon"]}
num-complex = "*"
rayon = "*"
rand = "*"
num-traits = "*"
[profile.release]
#lto = false
lto = "fat"
[features]
test = []
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "opening_files_benchmark"
harness = false
[[bench]]
name = "read_frames_benchmark"
harness = false
[[bench]]
name = "mask_frames_benchmark"
harness = false
[[bench]]
name = "mask_flim_benchmark"
harness = false
[[bench]]
name = "flim_read_benchmark"
harness = false
[[bench]]
name = "metadata_benchmarks"
harness = false
[[bin]]
name = "siff_to_tiff"
path = "src/bin/siff_to_tiff.rs"
[lib]
name = "corrosiff"
path = "src/lib.rs"
crate-type = ["rlib","dylib"]
[[test]]
name = "integration"
path = "src/tests/io_tests.rs"