-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: bump tinymist to 0.12.0-rc1 (#708)
* feat: support nightly typst (#600) * feat: support for custom certificate configuration (#592) * feat: add certificate option * refactor: move SystemCompilerFeat into tinymist-world * feat: move HttpRegistry as HttpsRegistry into tinymist-world * feat: add reading pem file * feat: update LspUniverseBuilder::build * feat: fill missing argument of LspUniverseBuilder::build * chore: update lock file for additional dependencies * chore: refine comment for certification * refactor: simplify by new constructor * refactor: sort arguments for threaded_http * refactor: split https.rs from lib.rs in tinymist-world * feat: provide package view and local documentation (#596) * feat: move featured components * feat: provide package view and local documentation * stage * fix: compile error by merged commits * fix: ignore system fonts correctly (#597) * feat: adapt nightly typst chore: use mainline typst fix: `leaf_at` second parameter fix: build `Engine` fix: `interpret_mode_at` converage feat: use my typst fix: use `typst::trace` to trace fix: frameitem fix: new kinds fix: new scope fix: lazyhash fix: result fix: new SyntaxKinds fix: utils, lazyhash chore: remove useless imports fix: sink feat: frameitem fix: export svg with page fix: deref span styl: deps fix: lazyhash deps: use my typstyle fix: enable contenthint with feature fix: leaf_at side fix: compile.output deps fix: warnings deps: use new branch name fix: fix merge error ci: update ci branch test: accept new test snap fix: fix compile deps: update typst fix: fix compilation for latest tinymist fix: fix tests fix: fix tests * chore: clean useless imports --------- Co-authored-by: ricOC3 <[email protected]> Co-authored-by: Myriad-Dreamin <[email protected]> * fix: compile warnings and errors * fix: add round_2 back * fix: pdf options * build: bump version to 0.11.33 build: bump version to 0.11.31 (#652) build: lock git branches build: bump version to 0.11.23-rc1 dev: update cargo.toml deps: update typst, typst.ts, typstyle to tagged version (#624) build: bump version to 0.11.29 (#628) dev: nightly-0.11.31 (#649) * deps: update typst * test: fix snapshot fix: dependencies dev: nightly 0.11.33 (#655) * deps: update typst, typst.ts, typstyle * test: fix test hash * fix: compile error * fix: errors * build: bump typst to 0.12.0 * dev: final bumps * build: bump version to 0.11.34-rc1 * build: update cargo.lock * test: update snapshot --------- Co-authored-by: ParaN3xus <[email protected]> Co-authored-by: ricOC3 <[email protected]>
- Loading branch information
1 parent
d9d10df
commit 66fff06
Showing
41 changed files
with
1,935 additions
and
1,116 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[workspace.package] | ||
description = "An integrated language service for Typst." | ||
authors = ["Myriad-Dreamin <[email protected]>", "Nathan Varner"] | ||
version = "0.11.32" | ||
version = "0.11.34-rc1" | ||
edition = "2021" | ||
readme = "README.md" | ||
license = "Apache-2.0" | ||
|
@@ -91,31 +91,34 @@ env_logger = "0.11.3" | |
log = "0.4" | ||
|
||
# Typst | ||
reflexo = { version = "0.5.0-rc7", default-features = false, features = [ | ||
reflexo = { version = "0.5.0-rc8", default-features = false, features = [ | ||
"flat-vector", | ||
] } | ||
reflexo-world = { version = "0.5.0-rc7", features = ["system"] } | ||
reflexo-typst = { version = "0.5.0-rc7", features = [ | ||
reflexo-world = { version = "0.5.0-rc8", features = ["system"] } | ||
reflexo-typst = { version = "0.5.0-rc8", features = [ | ||
"system", | ||
], default-features = false } | ||
reflexo-vec2svg = { version = "0.5.0-rc7" } | ||
typst = "0.11.1" | ||
typst-timing = "0.11.1" | ||
typst-pdf = "0.11.1" | ||
typst-svg = "0.11.1" | ||
typst-render = "0.11.1" | ||
typst-assets = "0.11.1" | ||
typst-syntax = "0.11.1" | ||
reflexo-vec2svg = { version = "0.5.0-rc8" } | ||
reflexo-typst-shim = { version = "0.5.0-rc8", features = ["nightly"] } | ||
|
||
|
||
typst = "0.12.0" | ||
typst-timing = "0.12.0" | ||
typst-svg = "0.12.0" | ||
typst-render = "0.12.0" | ||
typst-pdf = "0.12.0" | ||
typst-syntax = "0.12.0" | ||
typst-assets = "0.12.0" | ||
typstfmt_lib = { git = "https://github.com/astrale-sharp/typstfmt", tag = "0.2.7" } | ||
typstyle = { version = "0.11.32", default-features = false } | ||
typstyle = { version = "0.12.0", default-features = false } | ||
typlite = { path = "./crates/typlite" } | ||
typst-shim = { path = "./crates/typst-shim", features = [] } | ||
typst-shim = { path = "./crates/typst-shim", features = ["nightly"] } | ||
|
||
# LSP | ||
crossbeam-channel = "0.5.12" | ||
lsp-server = "0.7.6" | ||
lsp-types = { version = "=0.95.0", features = ["proposed"] } | ||
sync-lsp = { path = "./crates/sync-lsp" } | ||
sync-lsp = { path = "./crates/sync-lsp", features = ["clap"] } | ||
|
||
# CLI | ||
clap = { version = "4.5", features = ["derive", "env", "unicode", "wrap_help"] } | ||
|
@@ -137,9 +140,10 @@ dhat = "0.3.3" | |
divan = "0.1.14" | ||
insta = { version = "1.39", features = ["glob"] } | ||
|
||
|
||
# Our Own Crates | ||
typst-preview = { path = "./crates/typst-preview/" } | ||
tinymist-assets = { version = "0.11.32" } | ||
typst-preview = { path = "./crates/typst-preview" } | ||
tinymist-assets = { version = "0.11.34-rc1" } | ||
tinymist = { path = "./crates/tinymist/" } | ||
tinymist-derive = { path = "./crates/tinymist-derive/" } | ||
tinymist-analysis = { path = "./crates/tinymist-analysis/" } | ||
|
@@ -176,12 +180,12 @@ undocumented_unsafe_blocks = "warn" | |
|
||
# tinymist-assets = { path = "./crates/tinymist-assets/" } | ||
|
||
typst = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "tinymist-v0.11.30" } | ||
typst-timing = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "tinymist-v0.11.30" } | ||
typst-svg = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "tinymist-v0.11.30" } | ||
typst-render = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "tinymist-v0.11.30" } | ||
typst-pdf = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "tinymist-v0.11.30" } | ||
typst-syntax = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "tinymist-v0.11.30" } | ||
typst = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "tinymist-v0.12.0-rc1" } | ||
typst-timing = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "tinymist-v0.12.0-rc1" } | ||
typst-svg = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "tinymist-v0.12.0-rc1" } | ||
typst-render = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "tinymist-v0.12.0-rc1" } | ||
typst-pdf = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "tinymist-v0.12.0-rc1" } | ||
typst-syntax = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "tinymist-v0.12.0-rc1" } | ||
|
||
# typst = { path = "../typst/crates/typst" } | ||
# typst-timing = { path = "../typst/crates/typst-timing" } | ||
|
@@ -190,11 +194,11 @@ typst-syntax = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = " | |
# typst-render = { path = "../typst/crates/typst-render" } | ||
# typst-syntax = { path = "../typst/crates/typst-syntax" } | ||
|
||
# typst-ts-svg-exporter = { git = "https://github.com/Myriad-Dreamin/typst.ts/", rev = "11b1ef0909ee6ded49eb84db999af14276125a62" } | ||
# reflexo = { git = "https://github.com/Myriad-Dreamin/typst.ts/", rev = "11b1ef0909ee6ded49eb84db999af14276125a62" } | ||
# reflexo-world = { git = "https://github.com/Myriad-Dreamin/typst.ts/", rev = "11b1ef0909ee6ded49eb84db999af14276125a62" } | ||
# typst-ts-core = { git = "https://github.com/Myriad-Dreamin/typst.ts/", rev = "11b1ef0909ee6ded49eb84db999af14276125a62" } | ||
# typst-ts-compiler = { git = "https://github.com/Myriad-Dreamin/typst.ts/", rev = "11b1ef0909ee6ded49eb84db999af14276125a62" } | ||
# reflexo = { git = "https://github.com/Myriad-Dreamin/typst.ts/", rev = "5b79e34ad52d0418e22e88966e52d984a9fde110" } | ||
# reflexo-world = { git = "https://github.com/Myriad-Dreamin/typst.ts/", rev = "5b79e34ad52d0418e22e88966e52d984a9fde110" } | ||
# reflexo-typst = { git = "https://github.com/Myriad-Dreamin/typst.ts/", rev = "5b79e34ad52d0418e22e88966e52d984a9fde110" } | ||
# reflexo-vec2svg = { git = "https://github.com/Myriad-Dreamin/typst.ts/", rev = "5b79e34ad52d0418e22e88966e52d984a9fde110" } | ||
# reflexo-typst-shim = { git = "https://github.com/Myriad-Dreamin/typst.ts/", rev = "5b79e34ad52d0418e22e88966e52d984a9fde110" } | ||
|
||
# typst-ts-svg-exporter = { path = "../typst.ts/exporter/svg" } | ||
# reflexo = { path = "../typst.ts/crates/reflexo/" } | ||
|
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
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
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
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
Oops, something went wrong.