-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (70 loc) · 1.8 KB
/
Cargo.toml
File metadata and controls
77 lines (70 loc) · 1.8 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
66
67
68
69
70
71
72
73
74
75
76
77
[workspace]
resolver = "2"
members = [
"rust/alloc_track",
"rust/array2d",
"rust/calibrt",
"rust/micromzpaf",
"rust/timscentroid",
"rust/timsseek",
"rust/timsseek_cli",
"rust/timsquery",
"rust/timsquery_cli",
"rust/timsquery_viewer",
"rust/speclib_build_cli",
"python/timsquery_pyo3"
]
default-members = [
"rust/alloc_track",
"rust/array2d",
"rust/calibrt",
"rust/micromzpaf",
"rust/timscentroid",
"rust/timsseek",
"rust/timsseek_cli",
"rust/timsquery",
"rust/timsquery_cli",
"rust/timsquery_viewer",
"rust/speclib_build_cli"
]
[workspace.package]
version = "0.30.0"
edition = "2024"
authors = ["Sebastian Paez"]
license = "Apache-2.0"
[workspace.dependencies]
half = "2.6"
tracing = { version = "0.1.40", features = ["log"] }
serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_json = "1.0.141"
tracing-subscriber = { version = "0.3.18", features = [
"registry",
"env-filter",
] }
timsrust = { git = "https://github.com/jspaezp/timsrust", branch = "experimental/recalib_iter" }
rusqlite = "0.37.0"
rayon = "1.5"
clap = { version = "4.5.27", features = ["derive"] }
indicatif = { version = "0.18.0", features = ["rayon"] }
# Parquet and arrow usually need to be kept in sync
# Its not needed but makes binaries smaller
parquet_derive = { version = "57.1" }
parquet = { version = "57.1" }
arrow = { version = "57.1" }
mimalloc = { version = "0.1.46", features = ["secure"] }
thiserror = "2"
insta = { version = "1.34.0" }
bon = "3.8.1"
tinyvec = { features = ["alloc", "serde"], version = "1.10.0" }
rustyms = "0.11.0"
csv = "1.3"
tempfile = "3.23.0"
[workspace.lints.clippy]
len_without_is_empty = "allow"
[profile.release]
lto = 'thin'
codegen-units = 1
panic = 'abort'
opt-level = 3
# Needed for flamegraph
# debug = true