Update README.md

This commit is contained in:
Shunsuke Shibayama 2023-07-03 01:04:21 +09:00
parent c985ca7fce
commit 40b66fdf9d
3 changed files with 11 additions and 5 deletions

4
Cargo.lock generated
View File

@ -572,7 +572,7 @@ dependencies = [
[[package]] [[package]]
name = "py2erg" name = "py2erg"
version = "0.0.32" version = "0.0.33"
dependencies = [ dependencies = [
"erg_common", "erg_common",
"erg_compiler", "erg_compiler",
@ -582,7 +582,7 @@ dependencies = [
[[package]] [[package]]
name = "pylyzer" name = "pylyzer"
version = "0.0.32" version = "0.0.33"
dependencies = [ dependencies = [
"els", "els",
"erg_common", "erg_common",

View File

@ -15,7 +15,7 @@ members = [
] ]
[workspace.package] [workspace.package]
version = "0.0.32" version = "0.0.33"
authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"] authors = ["Shunsuke Shibayama <sbym1346@gmail.com>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
edition = "2021" edition = "2021"
@ -47,7 +47,7 @@ erg_common = { workspace = true }
els = { workspace = true } els = { workspace = true }
rustpython-parser = { workspace = true } rustpython-parser = { workspace = true }
rustpython-ast = { workspace = true } rustpython-ast = { workspace = true }
py2erg = { version = "0.0.32", path = "./crates/py2erg" } py2erg = { version = "0.0.33", path = "./crates/py2erg" }
[lib] [lib]
path = "src/lib.rs" path = "src/lib.rs"

View File

@ -73,7 +73,13 @@ pylyzer as a language server supports various features, such as completion and r
![autoimport](https://raw.githubusercontent.com/mtshiba/pylyzer/main/images/autoimport.gif) ![autoimport](https://raw.githubusercontent.com/mtshiba/pylyzer/main/images/autoimport.gif)
## [VSCode extension](https://github.com/mtshiba/pylyzer/blob/main/extension) ## VSCode extension
You can install the VSCode extension from the [Marketplace](https://marketplace.visualstudio.com/items?itemName=pylyzer.pylyzer) or from the command line:
```sh
code --install-extension pylyzer.pylyzer
```
## What is the difference from [Ruff](https://github.com/charliermarsh/ruff)? ## What is the difference from [Ruff](https://github.com/charliermarsh/ruff)?