forked from bellini666/pytest-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "pytest-language-server"
version = "0.14.1"
edition = "2021"
rust-version = "1.85"
authors = ["Thiago Bellini Ribeiro <hackedbellini@gmail.com>"]
license = "MIT"
description = "A blazingly fast Language Server Protocol implementation for pytest"
repository = "https://github.com/bellini666/pytest-language-server"
keywords = ["pytest", "lsp", "language-server", "testing"]
categories = ["development-tools", "development-tools::testing"]
[[bin]]
name = "pytest-language-server"
path = "src/main.rs"
[lib]
name = "pytest_language_server"
path = "src/lib.rs"
[dependencies]
tower-lsp-server = "0.23.0"
tokio = { version = "1.48", features = ["full"] }
serde_json = "1.0"
rustpython-parser = "0.4.0"
walkdir = "2.5"
dashmap = "6.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
clap = { version = "4.5.53", features = ["derive"] }
colored = "3.0"
rayon = "1.11.0"
[dev-dependencies]
insta = { version = "1.44", features = ["yaml"] }
assert_cmd = "2.0"
predicates = "3.1"
tempfile = "3.23.0"
ntest = "0.9"