[package]
edition = "2021"
rust-version = "1.93"
name = "cyanea-struct"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Protein and nucleic acid 3D structures for the Cyanea bioinformatics ecosystem"
readme = "README.md"
keywords = [
"bioinformatics",
"protein-structure",
"pdb",
"mmcif",
"structural-biology",
]
categories = ["science"]
license = "Apache-2.0"
repository = "https://github.com/cyanea-io/cyanea"
[features]
default = ["std"]
parallel = [
"dep:rayon",
"std",
]
serde = [
"dep:serde",
"cyanea-core/serde",
]
std = []
wasm = []
[lib]
name = "cyanea_struct"
path = "src/lib.rs"
[[bench]]
name = "struct_bio"
path = "benches/struct_bio.rs"
harness = false
[dependencies.cyanea-core]
version = "0.1.0"
default-features = false
[dependencies.hex]
version = "0.4"
[dependencies.rayon]
version = "1.10"
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.sha2]
version = "0.10"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]