-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+++ cranko-release-info-v1 [[projects]] qnames = ["tectonic_xdv", "cargo"] version = "0.1.12" age = 12 [[projects]] qnames = ["tectonic_errors", "cargo"] version = "0.2.0" age = 12 [[projects]] qnames = ["tectonic_status_base", "cargo"] version = "0.2.0" age = 6 [[projects]] qnames = ["tectonic_io_base", "cargo"] version = "0.3.0" age = 6 [[projects]] qnames = ["tectonic_geturl", "cargo"] version = "0.2.1" age = 6 [[projects]] qnames = ["tectonic_docmodel", "cargo"] version = "0.1.0" age = 6 [[projects]] qnames = ["tectonic_dep_support", "cargo"] version = "0.1.0" age = 16 [[projects]] qnames = ["tectonic_cfg_support", "cargo"] version = "0.1.3" age = 12 [[projects]] qnames = ["tectonic_bundles", "cargo"] version = "0.1.0" age = 6 [[projects]] qnames = ["tectonic_bridge_icu", "cargo"] version = "0.2.0" age = 12 [[projects]] qnames = ["tectonic_bridge_graphite2", "cargo"] version = "0.2.0" age = 12 [[projects]] qnames = ["tectonic_bridge_harfbuzz", "cargo"] version = "0.2.2" age = 8 [[projects]] qnames = ["tectonic_bridge_freetype2", "cargo"] version = "0.2.0" age = 12 [[projects]] qnames = ["tectonic_bridge_flate", "cargo"] version = "0.1.5" age = 0 [[projects]] qnames = ["tectonic_bridge_core", "cargo"] version = "0.2.2" age = 0 [[projects]] qnames = ["tectonic_xetex_layout", "cargo"] version = "0.1.0" age = 12 [[projects]] qnames = ["tectonic_pdf_io", "cargo"] version = "0.1.0" age = 12 [[projects]] qnames = ["tectonic_engine_xetex", "cargo"] version = "0.1.3" age = 0 [[projects]] qnames = ["tectonic_engine_xdvipdfmx", "cargo"] version = "0.1.2" age = 0 [[projects]] qnames = ["tectonic_engine_bibtex", "cargo"] version = "0.1.3" age = 0 [[projects]] qnames = ["tectonic", "cargo"] version = "0.6.3" age = 1 +++
- Loading branch information
Showing
33 changed files
with
751 additions
and
283 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
[package] | ||
name = "tectonic_bridge_core" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
authors = ["Peter Williams <[email protected]>"] | ||
description = """ | ||
Exposing core backend APIs to the Tectonic C/C++ code. | ||
|
@@ -28,7 +28,6 @@ tectonic_io_base = { path = "../io_base", version =">=0.3.0,<1"} | |
tectonic_status_base = { path = "../status_base", version =">=0.1.0,<1"} | ||
|
||
[build-dependencies] | ||
cbindgen = "^0.16" | ||
cc = "^1.0.66" | ||
|
||
[package.metadata.internal_dep_versions] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
language = "C" | ||
cpp_compat = true | ||
style = "type" | ||
include_guard = "TECTONIC_BRIDGE_CORE_GENERATED_H" | ||
after_includes = """ | ||
typedef struct ttbc_input_handle_t ttbc_input_handle_t; | ||
typedef struct ttbc_output_handle_t ttbc_output_handle_t; | ||
typedef ttbc_input_handle_t *rust_input_handle_t; | ||
typedef ttbc_output_handle_t *rust_output_handle_t; | ||
""" | ||
|
||
[enum] | ||
prefix_with_name = true | ||
|
||
[export.rename] | ||
"CoreBridgeState" = "ttbc_state_t" | ||
"Diagnostic" = "ttbc_diagnostic_t" | ||
"FileFormat" = "ttbc_file_format" | ||
"InputHandle" = "ttbc_input_handle_t" | ||
"OutputHandle" = "ttbc_output_handle_t" |
Oops, something went wrong.