forked from cds-astro/fitsrs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (56 loc) · 1.35 KB
/
Copy pathCargo.toml
File metadata and controls
65 lines (56 loc) · 1.35 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
[package]
name = "fitsrs"
version = "0.4.0-beta"
authors = ["Matthieu Baumann <matthieu.baumann@astro.unistra.fr>"]
edition = "2018"
description = "Implementation of the FITS image parser"
license = "Apache-2.0 OR MIT"
readme = "README.md"
categories = ["science", "algorithms"]
keywords = ["fits"]
documentation = "https://docs.rs/fitsrs"
homepage = "https://github.com/cds-astro/fitsrs/"
repository = "https://github.com/cds-astro/fitsrs/"
exclude = [
"samples/*",
]
[workspace]
members = [
"crates/cli"
]
[workspace.dependencies]
log = "0.4"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = { workspace = true }
byteorder = "1.4.2"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.138"
futures = "0.3.31"
async-trait = "0.1.66"
quick-error = "2.0.1"
flate2 = "1.0.35"
wcs = "0.4.1"
[dev-dependencies]
test-case = "3.0.0"
tokio = { version = "1.26.0", features = ["rt", "macros"]}
image = { version = "0.25.5" }
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "iterate_over_headers"
harness = false
[[bench]]
name = "decompress"
harness = false
[profile.release]
lto = true
opt-level = 3
[profile.test]
incremental = true
opt-level = 0
debug = 1
lto = true
debug-assertions = true
overflow-checks = true
rpath = false
codegen-units = 512