[package]
edition = "2021"
rust-version = "1.70"
name = "bigsmiles"
version = "0.1.3"
authors = ["Richard Huot"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A BigSMILES parser for polymer and macromolecule notation"
documentation = "https://docs.rs/bigsmiles"
readme = "README.md"
keywords = [
"chemistry",
"smiles",
"bigsmiles",
"polymer",
"macromolecules",
]
categories = [
"parser-implementations",
"science",
]
license = "MIT"
repository = "https://github.com/Peariforme/bigsmiles-rs"
[lib]
name = "bigsmiles"
path = "src/lib.rs"
[[test]]
name = "display"
path = "tests/display.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "parse"
path = "tests/parse.rs"
[[test]]
name = "segments"
path = "tests/segments.rs"
[[bench]]
name = "parser"
path = "benches/parser.rs"
harness = false
[dependencies.opensmiles]
version = "0.1"
[dependencies.thiserror]
version = "1"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.pretty_assertions]
version = "1"