9 releases

0.4.1 Feb 5, 2024
0.4.0 Jun 12, 2023
0.3.2 May 18, 2023
0.3.1 Oct 3, 2022
0.1.0 Jun 4, 2021

#352 in Text processing

Download history 228/week @ 2024-07-22 202/week @ 2024-07-29 151/week @ 2024-08-05 158/week @ 2024-08-12 157/week @ 2024-08-19 167/week @ 2024-08-26 130/week @ 2024-09-02 210/week @ 2024-09-09 262/week @ 2024-09-16 281/week @ 2024-09-23 326/week @ 2024-09-30 159/week @ 2024-10-07 149/week @ 2024-10-14 121/week @ 2024-10-21 133/week @ 2024-10-28 146/week @ 2024-11-04

555 downloads per month
Used in 24 crates (8 directly)

MIT license

130KB
2.5K SLoC

The tectonic_bridge_core crate

This crate is part of the Tectonic project. It provides a C API to core I/O services provided by the Tectonic Rust code. This API is then consumed by the various C/C++ “engines” implementing the TeX software.

If your project depends on this crate, Cargo will export for your build script an environment variable named DEP_TECTONIC_BRIDGE_CORE_INCLUDE, which will be the name of a directory containing the generated tectonic_bridge_core.h file that exposes this crate’s C API.

You will need to ensure that your Rust code actually references this crate in order for the linker to include the C API symbols. If you are not actively using its Rust API, a use statement will suffice:

#[allow(unused_imports)]
#[allow(clippy::single_component_path_imports)]
use tectonic_bridge_core;

Cargo features

This crate does not currently provide any Cargo features.

Updating the generated header

This crate exposes Rust functions to C/C++ code using a header file created by cbindgen. To update the header, run:

cbindgen --output support/tectonic_bridge_core_generated.h

Dependencies

~2–13MB
~106K SLoC