[package]
edition = "2024"
rust-version = "1.88"
name = "lib3mf-async"
version = "0.4.0"
authors = ["Steve Scargall"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Non-blocking async 3MF parsing with tokio - high-throughput manufacturing data processing"
homepage = "https://sscargal.github.io/lib3mf-rs/"
readme = "README.md"
keywords = [
"3mf",
"async",
"tokio",
"3d-printing",
"streaming",
]
categories = [
"asynchronous",
"parser-implementations",
]
license = "BSD-2-Clause"
repository = "https://github.com/sscargal/lib3mf-rs"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "lib3mf_async"
path = "src/lib.rs"
[[example]]
name = "async_load"
path = "examples/async_load.rs"
[[test]]
name = "async_load_test"
path = "tests/async_load_test.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.async_zip]
version = "0.0.18"
features = [
"tokio",
"deflate",
]
[dependencies.futures-lite]
version = "2.6.1"
[dependencies.lib3mf-core]
version = "0.4.0"
default-features = false
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.49.0"
features = ["full"]
[dependencies.tokio-util]
version = "0.7.18"
features = ["compat"]
[dependencies.uuid]
version = "1.20.0"
features = [
"v4",
"serde",
"js",
]
[dev-dependencies.anyhow]
version = "1.0"