# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "knuckles-parse" version = "0.2.1" authors = ["Ethan Holz"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A tooklkit for parsing PDB records" readme = "README.md" license = "MIT" license-file = "LICENSE" [lib] name = "knuckles_parse" crate-type = [ "cdylib", "rlib", ] path = "src/lib.rs" [dependencies.knuckles-macro] version = "0.2.0" optional = true [dependencies.pyo3] version = "0.23" features = ["extension-module"] optional = true [dependencies.rayon] version = "1.8.1" optional = true [dependencies.serde] version = "1.0.195" features = [ "derive", "serde_derive", ] optional = true [dependencies.serde_json] version = "1.0.111" optional = true [features] default = ["parallel"] parallel = ["dep:rayon"] python = [ "dep:pyo3", "dep:knuckles-macro", ] serde = [ "dep:serde_json", "dep:serde", ]