-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 814 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 814 Bytes
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
[package]
name = "taxonomy"
version = "0.10.5"
authors = ["Vincent Prouillet <vincent@onecodex.com>"]
description = "Routines for loading, saving, and manipulating taxonomic trees"
keywords = ["taxonomy", "bioinformatics"]
categories = ["command-line-utilities", "science"]
repository = "https://github.com/onecodex/taxonomy"
license = "MIT"
readme = "./README.md"
edition = "2021"
[dependencies]
memchr = "2.2.1"
pyo3 = { version = "0.18", optional = true }
quick-xml = "0.27"
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.44"
[features]
python = ["pyo3/extension-module"]
python_test = ["pyo3", "pyo3/auto-initialize"]
[lib]
crate-type=["cdylib", "rlib"]
bench = false
[dev-dependencies]
rand = "0.8"
tempfile = "3.3"
criterion = "0.4"
[[bench]]
name = "taxonomy"
harness = false