-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (63 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
71 lines (63 loc) · 1.9 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
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
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.6.2"
edition = "2024"
rust-version = "1.92"
homepage = "https://zubanls.com"
authors = ["Dave Halter <info@zubanls.com>"]
[workspace.dependencies]
# Internal crates
cli_args = { path = "./crates/cli_args" }
config = { path = "./crates/config" }
licensing = { path = "./crates/licensing" }
logging_config = { path = "./crates/logging_config" }
parsa = { path = "./crates/parsa" }
parsa_python = { path = "./crates/parsa_python" }
parsa_python_cst = { path = "./crates/parsa_python_cst" }
test_utils = { path = "./crates/test_utils" }
typeshed_symbols = { path = "./crates/typeshed_symbols" }
utils = { path = "./crates/utils" }
vfs = { path = "./crates/vfs" }
zmypy = { path = "./crates/zmypy" }
zuban_python = { path = "./crates/zuban_python" }
zubanls = { path = "./crates/zubanls" }
# General third party dependencies
anyhow = "*"
clap = { version = "*", features = ["derive"] }
colored = { version = "*" }
crossbeam-channel = "*"
dirs = "*"
fnv = "*"
lazy_static = "*"
lsp-types = { version = "0.97.0", features = ["proposed"]}
notify = "*"
num-bigint = "*"
num-traits = "*"
rayon = "*"
regex = "*"
serde = { version = "*", features = ["derive"] }
serde_json = "*"
shellexpand = "*"
toml_edit = "*"
tracing = "*"
tracing-subscriber = { version = "*", features = ["time", "local-time"] }
tracing-appender = "*"
# Dev dependencies
insta = "*"
[workspace.metadata.release]
pre-release-hook = [
"sed",
"-i",
"s/^version = .*$/version = \"{{version}}\"/",
# It seems like this is being run for every Cargo.toml
"../../deploy/pypi/zuban/pyproject.toml",
]
[profile.release]
# Had debug = "line-tables-only" here, which is probably enough, but struggled
# with test unwinding which has works on debug = <any number>. Use this for now
debug = 1
[workspace.lints.rust]
explicit_outlives_requirements = "warn"
unused_extern_crates = "warn"