-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 699 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (32 loc) · 699 Bytes
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
[package]
name = "shapels"
version = "0.5.0"
edition = "2024"
description = "Shape inference for torch on your editor"
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/carrascomj/shapels"
[dependencies]
lsp-types = "0.95"
rustpython-parser = "0.3"
thiserror = "1.0"
lsp-server = "0.7"
serde_json = "1.0"
phf = { version = "0.13.1"}
phf_macros = "0.13.1"
[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
[lib]
name = "shapels"
path = "src/lib.rs"
bench = false
[[bin]]
name = "shapels"
path = "src/main.rs"
bench = false
[[bench]]
name = "bench_selected_tests"
harness = false
[[bench]]
name = "bench_macro_lsp"
harness = false