-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
50 lines (44 loc) · 1.28 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
47
48
49
[package]
name = "solhat"
version = "0.6.0"
authors = ["Kevin M. Gill <[email protected]>"]
edition = "2021"
description = "Solar Hydrogen Alpha Telescope: A set of utilities and a pipeline for processing raw hydrogen-alpha solar imaging using lucky imaging"
repository = "https://github.com/kmgill/solhat"
readme = "README.md"
keywords = ["sun", "astrophotography", "science"]
license = "MIT"
[lib]
name = "solhat"
[[bin]]
name = "solhat"
path = "bin/solhat.rs"
[profile.release]
# strip = true # Automatically strip symbols from the binary.
debug = 2
[dependencies]
image = "0.24.1"
imageproc = "0.23.0"
clap = { version = "4.2.7", features = ["derive"] }
memmap = "0.7.0"
astro = "2.0.0"
sun = "0.2.0"
chrono = "0.4.19"
fastblur = "0.1.1"
rayon = "1.5.3"
sciimg = {git = "https://github.com/MarsRaw/sciimg.git", branch = "kmgill_develop", features = ["rayon"]}
# sciimg = {path = "../sciimg"}
stump = {git = "https://github.com/MarsRaw/stump.git"}
toml = "0.7.4"
serde = { version = "1.0.125", features = ["derive"] }
astral = { git="https://github.com/kmgill/astral" }
wild = "2.0.4"
num_cpus = "1.13.1"
anyhow = "1.0.65"
indicatif = "0.17.3"
lazy_static = "1.4.0"
serde_json = "1.0.64"
async-trait = "0.1.57"
tokio = {version="1.21.2", features= ["full"]}
colored = "2.0.0"
itertools = "0.10.5"