-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
93 lines (83 loc) · 2.73 KB
/
Cargo.toml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "sith-lsp"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["crates/*"]
[dependencies]
python_ast = { workspace = true }
python_parser = { workspace = true }
ruff_python_resolver = { workspace = true }
sith_server = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
tracing-tree = { workspace = true }
anyhow = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
[workspace.dependencies]
ruff_text_size = { path = "crates/ruff_text_size", package = "ruff_text_size" }
ruff_index = { path = "crates/ruff_index", package = "ruff_index" }
ruff_source_file = { path = "crates/ruff_source_file", package = "ruff_source_file" }
python_ast = { path = "crates/python_ast", package = "python_ast" }
python_parser = { path = "crates/python_parser", package = "python_parser" }
sith_server = { path = "crates/sith_server", package = "sith_server" }
semantic_model = { path = "crates/semantic_model", package = "semantic_model" }
ruff_python_resolver = { path = "crates/ruff_python_resolver", package = "ruff_python_resolver" }
python_ast_utils = { path = "crates/python_ast_utils", package = "python_ast_utils" }
python_utils = { path = "crates/python_utils", package = "python_utils" }
bitflags = "2.4.1"
encoding_rs = "0.8.32"
static_assertions = "1.1.0"
unicode-ident = "1.0.11"
unicode_names2 = "1.2.1"
unicode-normalization = "0.1.23"
itertools = "0.11.0"
memchr = "2.6.4"
ignore = "0.4.22"
tracing = "0.1.40"
anyhow = "1.0.81"
tracing-tree = "0.3.0"
tracing-subscriber = "0.3.18"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.113"
schemars = "0.8.12"
once_cell = "1.18.0"
crossbeam = "0.8.4"
jod-thread = "0.1.2"
libc = "0.2.153"
lsp-server = "0.7.6"
lsp-types = { version = "0.95.0", features = ["proposed"] }
rustc-hash = "2.0.0"
log = "0.4.17"
proc-macro2 = "1.0"
syn = { version = "2.0", features = ["derive", "parsing", "extra-traits", "full"] }
quote = "1.0"
criterion = { version = "0.5.1" }
is-macro = "0.3.4"
compact_str = { version = "0.8.0", features = ["serde"] }
rayon = "1.10.0"
bstr = "1.10.0"
walkdir = { version = "2.3.2" }
shellexpand = { version = "3.0.0" }
zip = { version = "0.6.6", default-features = false, features = ["zstd"] }
path-slash = { version = "0.2.1" }
directories = "5.0.1"
indexmap = "2.7.0"
bimap = "0.6.3"
[dev-dependencies]
insta = { version = "1.31.0", features = ["yaml"] }
pretty_assertions = "1.3.0"
[profile.release]
strip = true
lto = true
codegen-units = 1
[profile.profiling]
inherits = "release"
strip = false
debug = true
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3