[package]
edition = "2024"
rust-version = "1.85"
name = "reflow_pack_loader"
version = "0.2.2"
authors = ["Damilare Akinlaja"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime loader for .rflpack actor bundles — dlopens pack cdylibs and publishes their templates to the runtime registry."
homepage = "https://github.com/offbit-ai/reflow"
documentation = "https://docs.rs/reflow_pack_loader"
readme = false
keywords = [
"reflow",
"actor",
"plugin",
"dlopen",
"bundle",
]
categories = [
"development-tools",
"concurrency",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/offbit-ai/reflow"
resolver = "2"
[lib]
name = "reflow_pack_loader"
path = "src/lib.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies.anyhow]
version = "1.0.94"
[dependencies.hex]
version = "0.4"
[dependencies.once_cell]
version = "1"
[dependencies.parking_lot]
version = "0.12.3"
[dependencies.reflow_actor]
version = "0.2.1"
[dependencies.serde]
version = "1.0.215"
features = [
"derive",
"rc",
]
default-features = true
[dependencies.serde_json]
version = "1.0.133"
[dependencies.sha2]
version = "0.10"
[dependencies.zip]
version = "2"
features = [
"deflate",
"zstd",
]
default-features = false
[dev-dependencies.serde_json]
version = "1.0.133"
[dev-dependencies.zip]
version = "2"
features = [
"deflate",
"zstd",
]
default-features = false
[build-dependencies.anyhow]
version = "1.0.94"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.libloading]
version = "0.8"