Merge pull request #249405 from figsoda/typst-lsp

typst-lsp: 0.9.1 -> 0.9.2
This commit is contained in:
Nick Cao 2023-08-15 19:14:30 -06:00 committed by GitHub
commit 88362a759c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 5 deletions

View file

@ -2903,9 +2903,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
version = "1.30.0"
version = "1.31.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d3ce25f50619af8b0aec2eb23deebe84249e19e2ddd393a6e16e3300a6dadfd"
checksum = "40de3a2ba249dcb097e01be5e67a5ff53cf250397715a071a81543e8a832a920"
dependencies = [
"backtrace",
"bytes",
@ -3267,7 +3267,7 @@ dependencies = [
[[package]]
name = "typst-lsp"
version = "0.9.1"
version = "0.9.2"
dependencies = [
"anyhow",
"async-compression",

View file

@ -7,13 +7,13 @@
rustPlatform.buildRustPackage rec {
pname = "typst-lsp";
version = "0.9.1";
version = "0.9.2";
src = fetchFromGitHub {
owner = "nvarner";
repo = "typst-lsp";
rev = "v${version}";
hash = "sha256-vzywUbfLyogJhjybiUEGJ2XESjDWE2fMfHM0uJxZC38=";
hash = "sha256-l69/8XhIvGYcvtoCE7+hfp810F3uBVvxqZnA12o8HCg=";
};
cargoLock = {
@ -32,6 +32,11 @@ rustPlatform.buildRustPackage rec {
"--skip=workspace::package::external::remote_repo::test::full_download"
];
# workspace::package::external::manager::test::local_package tries to access the data directory
preCheck = ''
export HOME=$(mktemp -d)
'';
meta = with lib; {
description = "A brand-new language server for Typst";
homepage = "https://github.com/nvarner/typst-lsp";