-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 876 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
36
37
38
39
[workspace]
members = [
"omics",
"omics-coordinate",
"omics-core",
"omics-molecule",
"omics-variation",
"profile",
]
resolver = "2"
[workspace.package]
license = "MIT OR Apache-2.0"
edition = "2021"
authors = ["The Omics project developers"]
description = "Foundations for the Rust omics ecosystem"
homepage = "https://github.com/stjude-rust-labs/omics"
repository = "https://github.com/stjude-rust-labs/omics"
rust-version = "1.80.0"
[workspace.dependencies]
anyhow = "1.0.89"
criterion = "0.5.1"
regex = "1.9.6"
string-interner = "0.18.0"
thiserror = "2.0.4"
[workspace.lints.rust]
missing_docs = "warn"
nonstandard-style = "warn"
rust-2018-idioms = "warn"
rust-2021-compatibility = "warn"
rust-2024-compatibility = "warn"
[workspace.lints.rustdoc]
broken_intra_doc_links = "warn"
[workspace.lints.clippy]
missing_docs_in_private_items = "warn"