-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
40 lines (34 loc) · 1.01 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
[package]
name = "pdbtbx"
version = "0.12.0"
authors = ["Douwe Schulte <[email protected]>"]
license = "MIT"
edition = "2021"
description = "A library to open/edit/save (crystallographic) Protein Data Bank (PDB) and mmCIF files."
repository = "https://github.com/douweschulte/pdbtbx"
readme = "README.md"
keywords = ["pdb", "crystal", "protein", "mmcif", "bio"]
categories = ["parser-implementations", "science"]
include = ["src/**/*", "LICENSE", "README.md"]
rust-version = "1.64"
[dependencies]
rstar = { version = "0.12", optional = true }
serde = { version = "~1.0", optional = true, features = ["derive"] }
rayon = { version = "1", optional = true }
flate2 = { version = "1.0", optional = true }
doc-cfg = "0.1"
indexmap = "2.6"
[dev-dependencies]
serde_json = "~1.0"
[features]
default = ["rayon", "rstar", "serde", "compression"]
unstable-doc-cfg = []
compression = ["flate2"]
[package.metadata.docs.rs]
all-features = true
[profile.dev]
opt-level = 3
[[bench]]
name = "benchmark"
harness = false
path = "benches/benchmark.rs"