Merge pull request #314789 from GaetanLepage/tinymist

tinymist: 0.11.9 -> 0.11.10
This commit is contained in:
Pol Dellaiera 2024-05-26 11:08:39 +02:00 committed by GitHub
commit 24e59c06cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 13 additions and 15 deletions

View File

@ -10,10 +10,8 @@ vscode-utils.buildVscodeMarketplaceExtension {
mktplcRef = {
name = "tinymist";
publisher = "myriad-dreamin";
# Please update the corresponding binary (tinymist) when updating
# this extension.
version = "0.11.9";
hash = "sha256-h49SI/KoA5sbLIkJreZoux7mTIhGZ7HqtgE1EAh3vYM=";
inherit (tinymist) version;
hash = "sha256-etPjbmcBhS1dgq5wEoRIekZlRxYoC6KrsV/+owjHu4I=";
};
nativeBuildInputs = [

View File

@ -3743,7 +3743,7 @@ dependencies = [
[[package]]
name = "tests"
version = "0.11.9"
version = "0.11.10"
dependencies = [
"insta",
"lsp-server",
@ -3840,7 +3840,7 @@ dependencies = [
[[package]]
name = "tinymist"
version = "0.11.9"
version = "0.11.10"
dependencies = [
"anyhow",
"async-trait",
@ -3891,7 +3891,7 @@ dependencies = [
[[package]]
name = "tinymist-query"
version = "0.11.9"
version = "0.11.10"
dependencies = [
"anyhow",
"biblatex",
@ -3935,7 +3935,7 @@ dependencies = [
[[package]]
name = "tinymist-render"
version = "0.11.9"
version = "0.11.10"
dependencies = [
"base64 0.22.1",
"log",
@ -4530,9 +4530,9 @@ dependencies = [
[[package]]
name = "typstyle"
version = "0.11.21"
version = "0.11.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af9697d141856bfe6c865c9ef74d04c62dd6cd1b3b63c1e284b96974871a2fc7"
checksum = "bb15ec2ba1f804eab4f8f2ae1bbbe8a7d2f882bb8acabaee0b101de46ee28c56"
dependencies = [
"anyhow",
"clap",

View File

@ -13,13 +13,13 @@ rustPlatform.buildRustPackage rec {
pname = "tinymist";
# Please update the corresponding vscode extension when updating
# this derivation.
version = "0.11.9";
version = "0.11.10";
src = fetchFromGitHub {
owner = "Myriad-Dreamin";
repo = "tinymist";
rev = "refs/tags/v${version}";
hash = "sha256-Oa88WBkV9q17KNJuc/sGSQS39yVyqme66SfB0ZZw7b8=";
hash = "sha256-lmT0da517dVaXGeObyCXZyte8DNBh+/vaqV7hA+SJR4=";
};
cargoLock = {
@ -50,12 +50,12 @@ rustPlatform.buildRustPackage rec {
"--skip=e2e"
];
meta = with lib; {
meta = {
changelog = "https://github.com/Myriad-Dreamin/tinymist/blob/${src.rev}/CHANGELOG.md";
description = "Tinymist is an integrated language service for Typst";
homepage = "https://github.com/Myriad-Dreamin/tinymist";
license = licenses.asl20;
license = lib.licenses.asl20;
mainProgram = "tinymist";
maintainers = with maintainers; [ lampros ];
maintainers = with lib.maintainers; [ lampros ];
};
}