-
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 = 6 [[projects]] qnames = ["tectonic_errors", "cargo"] version = "0.2.0" age = 6 [[projects]] qnames = ["tectonic_status_base", "cargo"] version = "0.2.0" age = 0 [[projects]] qnames = ["tectonic_io_base", "cargo"] version = "0.3.0" age = 0 [[projects]] qnames = ["tectonic_geturl", "cargo"] version = "0.2.1" age = 0 [[projects]] qnames = ["tectonic_docmodel", "cargo"] version = "0.1.0" age = 0 [[projects]] qnames = ["tectonic_dep_support", "cargo"] version = "0.1.0" age = 10 [[projects]] qnames = ["tectonic_cfg_support", "cargo"] version = "0.1.3" age = 6 [[projects]] qnames = ["tectonic_bundles", "cargo"] version = "0.1.0" age = 0 [[projects]] qnames = ["tectonic_bridge_icu", "cargo"] version = "0.2.0" age = 6 [[projects]] qnames = ["tectonic_bridge_graphite2", "cargo"] version = "0.2.0" age = 6 [[projects]] qnames = ["tectonic_bridge_harfbuzz", "cargo"] version = "0.2.2" age = 2 [[projects]] qnames = ["tectonic_bridge_freetype2", "cargo"] version = "0.2.0" age = 6 [[projects]] qnames = ["tectonic_bridge_flate", "cargo"] version = "0.1.1" age = 7 [[projects]] qnames = ["tectonic_bridge_core", "cargo"] version = "0.2.0" age = 0 [[projects]] qnames = ["tectonic_xetex_layout", "cargo"] version = "0.1.0" age = 6 [[projects]] qnames = ["tectonic_pdf_io", "cargo"] version = "0.1.0" age = 6 [[projects]] qnames = ["tectonic_engine_xetex", "cargo"] version = "0.1.1" age = 0 [[projects]] qnames = ["tectonic_engine_xdvipdfmx", "cargo"] version = "0.1.0" age = 6 [[projects]] qnames = ["tectonic_engine_bibtex", "cargo"] version = "0.1.1" age = 5 [[projects]] qnames = ["tectonic", "cargo"] version = "0.6.0" age = 0 +++
- Loading branch information
Showing
69 changed files
with
3,136 additions
and
1,317 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
[package] | ||
name = "tectonic" | ||
version = "0.5.2" | ||
version = "0.6.0" | ||
authors = ["Peter Williams <[email protected]>"] | ||
description = """ | ||
A modernized, complete, embeddable TeX/LaTeX engine. Tectonic is forked from the XeTeX | ||
|
@@ -32,8 +32,10 @@ members = [ | |
"crates/bridge_graphite2", | ||
"crates/bridge_harfbuzz", | ||
"crates/bridge_icu", | ||
"crates/bundles", | ||
"crates/cfg_support", | ||
"crates/dep_support", | ||
"crates/docmodel", | ||
"crates/engine_bibtex", | ||
"crates/engine_xdvipdfmx", | ||
"crates/engine_xetex", | ||
|
@@ -51,7 +53,6 @@ name = "tectonic" | |
crate-type = ["rlib"] | ||
|
||
[dependencies] | ||
app_dirs = { version = "2", package = "app_dirs2" } | ||
atty = "0.2" | ||
byte-unit = "^4.0" | ||
cfg-if = "1.0" | ||
|
@@ -65,13 +66,15 @@ open = "1.4.0" | |
serde = { version = "^1.0", features = ["derive"], optional = true } | ||
sha2 = "^0.9" | ||
structopt = "0.3" | ||
tectonic_bridge_core = { path = "crates/bridge_core", version =">=0.1.0,<1"} | ||
tectonic_bridge_core = { path = "crates/bridge_core", version =">=0.2.0,<1"} | ||
tectonic_bundles = { path = "crates/bundles", version =">=0.1.0,<1", default-features = false } | ||
tectonic_docmodel = { path = "crates/docmodel", version =">=0.1.0,<1", optional = true } | ||
tectonic_engine_bibtex = { path = "crates/engine_bibtex", version =">=0.1.0,<1"} | ||
tectonic_engine_xdvipdfmx = { path = "crates/engine_xdvipdfmx", version =">=0.1.0,<1"} | ||
tectonic_engine_xetex = { path = "crates/engine_xetex", version =">=0.1.0,<1"} | ||
tectonic_engine_xetex = { path = "crates/engine_xetex", version =">=0.1.1,<1"} | ||
tectonic_errors = { path = "crates/errors", version =">=0.1.0,<1"} | ||
tectonic_geturl = { path = "crates/geturl", version =">=0.2.0,<1", default-features = false } | ||
tectonic_io_base = { path = "crates/io_base", version =">=0.2.0,<1"} | ||
tectonic_io_base = { path = "crates/io_base", version =">=0.3.0,<1"} | ||
tectonic_status_base = { path = "crates/status_base", version =">=0.1.0,<1"} | ||
tectonic_xdv = { path = "crates/xdv", version =">=0.1.9,<1"} | ||
tectonic_xetex_layout = { path = "crates/xetex_layout", version =">=0.1.0,<1"} | ||
|
@@ -85,17 +88,20 @@ zip = { version = "^0.5", default-features = false, features = ["deflate"] } | |
[features] | ||
default = ["geturl-reqwest", "serialization"] | ||
|
||
# Note: we used to have this to couple "serde" and "serde-derive", but we've | ||
# adopted the newer scheme to avoid having to depend on both -- should maybe | ||
# just get rid of this feature: | ||
serialization = ["serde", "toml"] | ||
# The main motivation for this feature was to be able to compile without | ||
# proc-macros (via serde-derive), for statically-linked targets which can't use | ||
# them. In the CI, we now build for statically-linked targets using a | ||
# cross-compilation model that allows us to have proc-macros anyway. So maybe | ||
# this feature should go away? It's kind of annoying to support, and at this | ||
# point proc-macros may have snuck into the dependency tree elsewhere, anyway. | ||
serialization = ["serde", "tectonic_docmodel", "toml"] | ||
|
||
external-harfbuzz = ["tectonic_engine_xetex/external-harfbuzz"] | ||
|
||
geturl-curl = ["tectonic_geturl/curl"] | ||
geturl-reqwest = ["tectonic_geturl/reqwest"] | ||
geturl-curl = ["tectonic_bundles/geturl-curl", "tectonic_geturl/curl"] | ||
geturl-reqwest = ["tectonic_bundles/geturl-reqwest", "tectonic_geturl/reqwest"] | ||
|
||
native-tls-vendored = ["tectonic_geturl/native-tls-vendored"] | ||
native-tls-vendored = ["tectonic_bundles/native-tls-vendored", "tectonic_geturl/native-tls-vendored"] | ||
|
||
# developer feature to compile with the necessary flags for profiling tectonic. | ||
profile = [] | ||
|
@@ -119,19 +125,21 @@ x86_64-unknown-linux-gnu = { install = ["fontconfig","freetype","harfbuzz[icu,gr | |
x86_64-pc-windows-msvc = { triplet = "x64-windows-static", install = ["fontconfig","freetype","harfbuzz[icu,graphite2]"] } | ||
|
||
[package.metadata.internal_dep_versions] | ||
tectonic_bridge_core = "thiscommit:2021-06-02:Oiyoowe2" | ||
tectonic_bridge_core = "thiscommit:2021-06-14:3sp2O1O" | ||
tectonic_bridge_flate = "thiscommit:2021-01-01:eer4ahL4" | ||
tectonic_bridge_graphite2 = "2c1ffcd702a662c003bd3d7d0ca4d169784cb6ad" | ||
tectonic_bridge_harfbuzz = "2c1ffcd702a662c003bd3d7d0ca4d169784cb6ad" | ||
tectonic_bridge_icu = "2c1ffcd702a662c003bd3d7d0ca4d169784cb6ad" | ||
tectonic_bundles = "thiscommit:2021-06-13:Q0esYor" | ||
tectonic_cfg_support = "thiscommit:aeRoo7oa" | ||
tectonic_dep_support = "5faf4205bdd3d31101b749fc32857dd746f9e5bc" | ||
tectonic_docmodel = "cd77b60d48b1ae3ef80d708e6858ea91cd9fa812" | ||
tectonic_engine_bibtex = "thiscommit:2021-01-17:KuhaeG1e" | ||
tectonic_engine_xdvipdfmx = "7dcbc52e58f9774b3d592919a9105377faeac509" | ||
tectonic_engine_xetex = "thiscommit:2021-06-02:nahbie2O" | ||
tectonic_engine_xetex = "b7a4085fa67c831d4532da6661bddafd1f9c24ff" | ||
tectonic_errors = "317ae79ceaa2593fb56090e37bf1f5cc24213dd9" | ||
tectonic_geturl = "thiscommit:2021-01-16:Aikoob9c" | ||
tectonic_io_base = "thiscommit:2021-01-16:SaeK7eex" | ||
tectonic_io_base = "thiscommit:2021-06-13:XFjtSsZ" | ||
tectonic_status_base = "317ae79ceaa2593fb56090e37bf1f5cc24213dd9" | ||
tectonic_xdv = "c91f2ef37858d1a0a724a5c3ddc2f7ea46373c77" | ||
tectonic_xetex_layout = "2c1ffcd702a662c003bd3d7d0ca4d169784cb6ad" |
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.1.0" | ||
version = "0.2.0" | ||
authors = ["Peter Williams <[email protected]>"] | ||
description = """ | ||
Exposing core backend APIs to the Tectonic C/C++ code. | ||
|
@@ -24,7 +24,7 @@ lazy_static = "^1.4" | |
libc = "^0.2" | ||
md-5 = "^0.9" | ||
tectonic_errors = { path = "../errors", version =">=0.2.0,<1"} | ||
tectonic_io_base = { path = "../io_base", version =">=0.2.0,<1"} | ||
tectonic_io_base = { path = "../io_base", version =">=0.3.0,<1"} | ||
tectonic_status_base = { path = "../status_base", version =">=0.1.0,<1"} | ||
|
||
[build-dependencies] | ||
|
@@ -33,5 +33,5 @@ cc = "^1.0.66" | |
|
||
[package.metadata.internal_dep_versions] | ||
tectonic_errors = "5c9ba661edf5ef669f24f9904f99cca369d999e7" | ||
tectonic_io_base = "thiscommit:2021-01-16:go5rieNg" | ||
tectonic_io_base = "f7eeff461778f7082db7ed5097d93aa63119eb12" | ||
tectonic_status_base = "317ae79ceaa2593fb56090e37bf1f5cc24213dd9" |
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
Oops, something went wrong.