mirror of https://github.com/mtshiba/pylyzer
Update README.md
This commit is contained in:
parent
c985ca7fce
commit
40b66fdf9d
|
|
@ -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",
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,13 @@ pylyzer as a language server supports various features, such as completion and r
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## [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)?
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue