-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
47 lines (42 loc) · 955 Bytes
/
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 = "astra_lite"
version = "0.0.218"
edition = "2021"
description = "Software for deepsky astrophotography and live stacking"
repository = "https://github.com/art-den/astra_lite"
license = "MIT"
build = "build.rs"
[dependencies]
gtk = "0.18.1"
async-channel = "2.0"
anyhow = { version = "1.0", features = ["backtrace"] }
bitstream-io="1.5"
itertools = "0.10"
tiff = "0.9"
rayon = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1"
regex = "1.7"
xmltree = "0.10"
dirs = "5.0"
bitflags = { version = "2.6", features = ["serde"] }
log = "0.4"
flexi_logger = "0.24"
chrono = { version = "0.4", features = ["serde"] }
once_cell = "1"
msgbox = "0.6"
rand = "0.8"
csv = "1.2"
[target.'cfg(windows)'.build-dependencies]
embed-resource = "1.7"
[profile.dev]
opt-level = 0
panic = "abort"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
[profile.dev.package."*"]
opt-level = 1