vecslide 0.1.0

Vector presentation format with synchronized audio (facade re-exporting vecslide-core).
Documentation
  • Coverage
  • 100%
    1 out of 1 items documented0 out of 0 items with examples
  • Size
  • Source code size: 84.61 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.8 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11m 56s Average build duration of successful builds.
  • all releases: 11m 56s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • automataIA/vecslide
    7 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • automataIA

vecslide

Crates.io docs.rs License: MIT OR Apache-2.0

Facade crate for the .vecslide vector-presentation format.

This crate re-exports the entire public API of vecslide-core under a shorter name, so you can write:

use vecslide::manifest::Presentation;
use vecslide::{unpack_from_reader, compile_html};

Both crates are released in lockstep at the same version. Pick the one whose import path you prefer — the functionality is identical.

Installation

[dependencies]
# Default: WASM-safe, no ZIP I/O, no Typst compilation.
vecslide = "0.1"

# In-memory ZIP read/write (still WASM-safe).
vecslide = { version = "0.1", features = ["zip-io"] }

# Native tooling: std::fs + Typst → SVG + bundled fonts.
vecslide = { version = "0.1", features = ["native"] }

native is a superset of zip-io. Do not enable native on WASM targets.

Why a facade?

  • Shorter, more memorable name on crates.io and in imports.
  • Keeps vecslide-core internally factored with a precise name.
  • Forward-compatible: if the project later grows a CLI/binary crate, it can still live under the vecslide family without breaking this import path.

For the full feature table, modules list, examples, and format spec see the vecslide-core README or the project repository.

License

Licensed under either of MIT or Apache-2.0 at your option.