forked from douweschulte/pdbtbx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 930 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
[package]
name = "pdbtbx"
version = "0.9.1"
authors = ["Douwe Schulte <[email protected]>"]
license = "MIT"
edition = "2018"
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"]
[dependencies]
rstar = { version = "^0.9.2", optional = true}
serde = { version = "~1.0", optional = true, features = ["derive"] }
rayon = {version = "^1", optional = true}
doc-cfg = "0.1"
indexmap = "^1.8"
[dev-dependencies]
serde_json = "~1.0"
[features]
default = ["rayon", "rstar", "serde"]
unstable-doc-cfg = []
[package.metadata.docs.rs]
all-features = true
[profile.dev]
opt-level = 3
[[bench]]
name = "benchmark"
harness = false
path = "benches/benchmark.rs"