-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
60 lines (55 loc) · 1.23 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
50
51
52
53
54
55
56
57
58
59
60
[workspace.package]
edition = "2021"
homepage = "https://www.wheretrue.dev/docs/exon/"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/wheretrue/exon"
version = "0.32.2"
[workspace]
members = [
"exon-benchmarks",
"exon-examples",
"exon/exon-bam",
"exon/exon-bcf",
"exon/exon-bed",
"exon/exon-bigwig",
"exon/exon-cli",
"exon/exon-common",
"exon/exon-core",
"exon/exon-cram",
"exon/exon-cram",
"exon/exon-fasta",
"exon/exon-fastq",
"exon/exon-fcs",
"exon/exon-genbank",
"exon/exon-gff",
"exon/exon-gtf",
"exon/exon-io",
"exon/exon-mzml",
"exon/exon-sam",
"exon/exon-sdf",
"exon/exon-test",
"exon/exon-vcf",
]
resolver = "2"
[workspace.dependencies]
arrow = { version = "52.2.0" }
async-trait = "0.1.82"
datafusion = { version = "41", features = ["compression", "parquet"] }
futures = "0.3"
noodles = { version = "0.79" }
object_store = { version = "0.10.2" }
tokio = { version = "1", features = ["io-util"] }
tokio-util = { version = "0.7.11", features = ["compat"] }
url = { version = "2.5.2" }
tracing = "0.1.40"
[profile.release]
codegen-units = 1
lto = true
[profile.profiling]
debug = true
inherits = "release"
[profile.quick-bench]
debug = true
inherits = "release"
lto = false