-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
35 lines (33 loc) · 1.03 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
[package]
name = "starfinder"
version = "1.3.2"
edition = "2021"
license-file = "LICENSE"
description = "starfinder is a Rust & Python package that provides functionality to read, process, and render star data from the Tycho-2 catalog. It's built with Rust for performance and exposes a Python API for ease of use."
homepage = "https://github.com/djmango/starfinder"
repository = "https://github.com/djmango/starfinder"
readme = "README.md"
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
]
[dependencies]
anyhow = "1.0.88"
clap = { version = "4.5.16", features = ["derive"] }
csv = "1.3.0"
directories = "5.0.1"
image = "0.25.2"
nalgebra = "0.33.0"
# pyo3 = "0.22.2"
reqwest = { version = "0.12.7", features = ["blocking"] }
serde = { version = "1.0.209", features = ["derive"] }
spec_math = "0.1.5"
thiserror = "1.0.63"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "starfinder"
crate-type = ["cdylib", "rlib"]