Skip to content

Commit

Permalink
update rusthdl
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Sep 9, 2024
1 parent 247031a commit 5f65a7c
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions src/OneWare.Vhdl/VhdlModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,52 @@ public class VhdlModule : IModule
]
}
]
},
new PackageVersion()
{
Version = "0.83.0",
Targets = [
new PackageTarget
{
Target = "win-x64",
Url =
"https://github.com/VHDL-LS/rust_hdl/releases/download/v0.83.0/vhdl_ls-x86_64-pc-windows-msvc.zip",
AutoSetting =
[
new PackageAutoSetting
{
RelativePath = Path.Combine("vhdl_ls-x86_64-pc-windows-msvc", "bin", "vhdl_ls.exe"),
SettingKey = LspPathSetting
}
]
},
new PackageTarget
{
Target = "linux-x64",
Url =
"https://github.com/VHDL-LS/rust_hdl/releases/download/v0.83.0/vhdl_ls-x86_64-unknown-linux-gnu.zip",
AutoSetting =
[
new PackageAutoSetting
{
RelativePath = Path.Combine("vhdl_ls-x86_64-unknown-linux-gnu", "bin", "vhdl_ls"),
SettingKey = LspPathSetting
}
]
},
new PackageTarget()
{
Target = "osx-arm64",
Url = "https://github.com/VHDL-LS/rust_hdl/releases/download/v0.83.0/vhdl_ls-aarch64-apple-darwin.zip",
AutoSetting = [
new PackageAutoSetting
{
RelativePath = Path.Combine("vhdl_ls-aarch64-apple-darwin", "bin", "vhdl_ls"),
SettingKey = LspPathSetting
}
]
}
]
}
]
};
Expand Down

0 comments on commit 5f65a7c

Please sign in to comment.