sbol 0.1.0

Rust implementation of the SBOL 3.1.0 specification.
Documentation
# 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 = "2024"
rust-version = "1.93"
name = "sbol"
version = "0.1.0"
build = "build.rs"
exclude = [
    "tests/",
    "src/bin/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust implementation of the SBOL 3.1.0 specification."
homepage = "https://github.com/marpaia/sbol-rs"
documentation = "https://docs.rs/sbol"
readme = "README.md"
keywords = [
    "sbol",
    "synthetic-biology",
    "rdf",
]
categories = [
    "science",
    "parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/marpaia/sbol-rs"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
http-resolver = ["dep:ureq"]

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

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

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

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

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

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

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

[[bench]]
name = "parse_validate"
path = "benches/parse_validate.rs"
harness = false

[[bench]]
name = "validate"
path = "benches/validate.rs"
harness = false

[dependencies.sbol-ontology]
version = "0.1.0"

[dependencies.sbol-rdf]
version = "0.1.0"

[dependencies.sha3]
version = "0.10"

[dependencies.thiserror]
version = "2"

[dependencies.ureq]
version = "2.12"
optional = true

[dev-dependencies.criterion]
version = "0.8"
features = ["cargo_bench_support"]
default-features = false

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.serde_json]
version = "1"

[build-dependencies.serde]
version = "1"
features = ["derive"]

[build-dependencies.toml]
version = "1.1"
features = [
    "parse",
    "serde",
]
default-features = false