-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (35 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
43 lines (35 loc) · 1.04 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
[package]
name = "phenopacket_tools"
version = "0.2.4"
edition = "2021"
keywords = ["GA4GH", "Phenopacket Schema", "Human Phenotype Ontology"]
description = "Generate GA4GH phenopackets from tabular data"
license = "BSD-3-Clause"
readme = "README.md"
[lib]
name = "phenopacket_tools"
path = "src/lib.rs"
[[bin]]
name = "p2t"
path = "bin/p2t.rs"
required-features = ["cli"]
[features]
default = []
cli = ["dep:clap"]
[dependencies]
chrono = { version = "0.4.42", features = ["serde", "clock"] }
clap = { version = "4.5.53", features = ["derive"], optional = true }
derive_more = {version = "2.1.0", features = ["from", "display"]}
lazy_static = "1.5.0"
phenopackets = { version = "0.2.2-post2", features = ["serde"]}
prost = "0.14.1"
prost-types = "0.14.1"
regex = "1.12.2"
serde = { version = "1.0", features = ["derive"] } # Required for serialization
serde_json = "1.0.145"
serde_yaml = "0.9.33"
[lints.rust]
unsafe_code = "forbid"
unused = "allow" # for initial development only!
[dev-dependencies]
rstest = "0.26.1"