-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (32 loc) · 957 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
[package]
name = "wcs"
version = "0.3.1"
edition = "2021"
authors = ["Matthieu Baumann <[email protected]>"]
description = "Implementation of the FITS World Coordinate System (WCS)"
license = "Apache-2.0 OR MIT"
readme = "readme.md"
categories = ["science", "algorithms"]
keywords = ["fits", "wcs", "projection"]
documentation = "https://docs.rs/wcs"
homepage = "https://github.com/cds-astro/wcs-rs/"
repository = "https://github.com/cds-astro/wcs-rs/"
exclude = [
"tests/*",
"examples/*",
"*.py"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
mapproj = { git = "https://github.com/cds-astro/cds-mapproj-rust", branch = "main" }
enum_dispatch = "0.3.8"
fitsrs = "0.2.11"
quick-error = "2.0.1"
paste = "1.0.15"
serde = { version = "1", features = ["derive"] }
[build-dependencies]
paste = "1.0.15"
[dev-dependencies]
image = "0.24.5"
csv = "1.1"
glob = "0.3.0"