ustar-parser 0.1.3

STAR format parser for CIF, mmCIF, NMR-STAR, cif dictionaries, NEF files and other scientific data formats
[[bin]]
name = "download-bmrb-stars"
path = "src/bin/download-bmrb-stars.rs"

[[bin]]
name = "download-cod-cifs"
path = "src/bin/download-cod-cifs.rs"

[[bin]]
name = "download-pdbs"
path = "src/bin/download-pdbs.rs"

[[bin]]
name = "sas_demo"
path = "src/bin/sas_demo.rs"

[[bin]]
name = "ustar-benchmark"
path = "src/bin/ustar-benchmark.rs"

[[bin]]
name = "ustar-dumper"
path = "src/bin/ustar-dumper.rs"

[[bin]]
name = "ustar-parse-debugger"
path = "src/bin/ustar-parse-debugger.rs"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.flate2]
version = "1.0"

[dependencies.miette]
features = ["fancy"]
optional = true
version = "7.2"

[dependencies.pest]
version = "2.8"

[dependencies.pest_derive]
features = ["grammar-extras"]
version = "2.8"

[dependencies.rand]
version = "0.8"

[dependencies.regex]
version = "1"

[dependencies.reqwest]
features = ["json", "gzip", "blocking", "stream"]
version = "0.11.27"

[dependencies.scraper]
version = "0.19"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.tabled]
version = "0.16"

[dependencies.thiserror]
optional = true
version = "2.0"

[dependencies.tokio]
features = ["rt-multi-thread", "macros"]
version = "1.40"

[dev-dependencies.indicatif]
version = "0.17"

[dev-dependencies.indoc]
version = "2.0"

[dev-dependencies.insta]
version = "1.34"

[dev-dependencies.rstest]
version = "0.18"

[[example]]
name = "check_unicode"
path = "examples/check_unicode.rs"

[[example]]
name = "find_semicolon_failure"
path = "examples/find_semicolon_failure.rs"

[[example]]
name = "parser_demo"
path = "examples/parser_demo.rs"

[features]
default = ["extended-errors"]
extended-errors = ["miette", "thiserror"]

[lib]
name = "ustar"
path = "src/lib.rs"

[lints.clippy]
expect_fun_call = "allow"
implicit_saturating_sub = "allow"
let_and_return = "allow"
manual_is_multiple_of = "allow"
needless_borrows_for_generic_args = "allow"
needless_range_loop = "allow"
new_without_default = "allow"
ptr_arg = "allow"
redundant_pattern_matching = "allow"
single_component_path_imports = "allow"
useless_conversion = "allow"
useless_vec = "allow"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["parsing", "science"]
description = "STAR format parser for CIF, mmCIF, NMR-STAR, cif dictionaries, NEF files and other scientific data formats"
documentation = "https://docs.rs/ustar-parser"
edition = "2021"
exclude = ["tests/test_data/*", "documents/*", "scripts/*", "target/*", "*.tmp"]
homepage = "https://github.com/varioustoxins/ustar"
keywords = ["parser", "star", "cif", "mmcif", "crystallography"]
license = "LGPL-3.0-only"
name = "ustar-parser"
readme = "README.md"
repository = "https://github.com/varioustoxins/ustar"
rust-version = "1.83.0"
version = "0.1.3"

[profile.release]
debug = 2

[[test]]
name = "encoding_tests"
path = "tests/encoding_tests.rs"

[[test]]
name = "error_handling_tests"
path = "tests/error_handling_tests.rs"

[[test]]
name = "parse_bmrb_stars"
path = "tests/parse_bmrb_stars.rs"

[[test]]
name = "parse_cod_cifs"
path = "tests/parse_cod_cifs.rs"

[[test]]
name = "parse_pdb_mmcifs"
path = "tests/parse_pdb_mmcifs.rs"

[[test]]
name = "parse_sas_test_files"
path = "tests/parse_sas_test_files.rs"

[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"

[[test]]
name = "sas_walker_tests"
path = "tests/sas_walker_tests.rs"

[[test]]
name = "string_decomposition_tests"
path = "tests/string_decomposition_tests.rs"

[[test]]
name = "ustar_dumper_tests"
path = "tests/ustar_dumper_tests.rs"