-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathCargo.toml
More file actions
135 lines (130 loc) · 4.63 KB
/
Copy pathCargo.toml
File metadata and controls
135 lines (130 loc) · 4.63 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
[workspace]
# Was necessary after switching to dev tree-sitter to fix this warning:
# > some crates are on edition 2021 which defaults to `resolver = "2"`, but
# > virtual workspaces default to `resolver = "1"`.
#
# Also necessary to enable the `testing` feature of harp only when testing
# (i.e. when building downstream packages like Ark with Harp's `testing`
# feature set in `dev-dependencies`).
resolver = "2"
members = [
"crates/*",
]
[workspace.package]
rust-version = "1.94"
edition = "2021"
license = "MIT"
authors = ["Posit Software, PBC"]
[workspace.lints.clippy]
result_large_err = "allow"
too_many_arguments = "allow"
[workspace.dependencies]
actix-web = "4.13.0"
aether_factory = { git = "https://github.com/posit-dev/air", package = "air_r_factory", rev = "d2659d5b158374bf486b594625ca50abbd0ac879" }
aether_lsp_utils = { git = "https://github.com/posit-dev/air", rev = "d2659d5b158374bf486b594625ca50abbd0ac879" }
aether_parser = { git = "https://github.com/posit-dev/air", package = "air_r_parser", rev = "d2659d5b158374bf486b594625ca50abbd0ac879" }
aether_syntax = { git = "https://github.com/posit-dev/air", package = "air_r_syntax", rev = "d2659d5b158374bf486b594625ca50abbd0ac879" }
aether_path = { path = "crates/aether_path" }
amalthea = { path = "crates/amalthea" }
anyhow = "1.0.102"
ark = { path = "crates/ark" }
ark_macros = { path = "crates/ark_macros" }
ark_test = { path = "crates/ark_test" }
assert_matches = "1.5.0"
async-trait = "0.1.89"
base64 = "0.22.1"
biome_line_index = { git = "https://github.com/lionel-/biome", rev = "a1296ea6ba363d8b8d8f02181b2a4ce9315c5ef9" }
biome_rowan = { git = "https://github.com/lionel-/biome", rev = "a1296ea6ba363d8b8d8f02181b2a4ce9315c5ef9" }
biome_text_size = { git = "https://github.com/lionel-/biome", rev = "a1296ea6ba363d8b8d8f02181b2a4ce9315c5ef9" }
blake3 = "1.8.5"
bus = "2.4.1"
camino = "1.1"
cc = "1.2.61"
cfg-if = "1.0.4"
chrono = "0.4.44"
compact_str = "0.9"
crossbeam = { version = "0.8.4", features = ["crossbeam-channel"] }
ctor = "1.0.0"
dap = { branch = "main", git = "https://github.com/sztomi/dap-rs" }
dashmap = "6.1.0"
dirs = "6.0.0"
ego-tree = "0.11.0"
embed-resource = "3.0.9"
env_logger = "0.11.10"
etcetera = "0.11.0"
filetime = "0.2.23"
flate2 = "1.1.9"
futures = "0.3.32"
harp = { path = "crates/harp" }
harp_macros = { path = "crates/harp_macros" }
hex = "0.4.3"
hmac = "0.13.0"
home = "0.5.12"
ignore = "0.4.23"
insta = "1.47.2"
itertools = "0.14.0"
libc = "0.2.186"
libloading = "0.9.0"
libr = { path = "crates/libr" }
log = "0.4.29"
mime_guess = "2.0.5"
nix = { version = "0.31", features = ["fs", "poll", "process", "signal"] }
notify = "8.2.0"
oak_core = { path = "crates/oak_core" }
oak_db = { path = "crates/oak_db" }
oak_fs = { path = "crates/oak_fs" }
oak_ide = { path = "crates/oak_ide" }
oak_index_vec = { path = "crates/oak_index_vec" }
oak_package_metadata = { path = "crates/oak_package_metadata" }
oak_r_process = { path = "crates/oak_r_process" }
oak_scan = { path = "crates/oak_scan" }
oak_semantic = { path = "crates/oak_semantic" }
oak_sources = { path = "crates/oak_sources" }
once_cell = "1.21.4"
parking_lot = "0.12.5"
paste = "1.0.15"
percent-encoding = "2.3.2"
quote = "1.0.45"
rand = "0.10"
regex = "1.12.3"
reqwest = { version = "0.13.3", default-features = false, features = ["json"] }
reqwest-middleware = "0.5.1"
reqwest-retry = "0.9.1"
rust-embed = "8.11.0"
rustc-hash = "2.1.2"
salsa = { version = "0.26.2", features = ["compact_str"] }
salsa-macros = "0.26.2"
scraper = "0.26.0"
semver = "1.0.28"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149", features = ["preserve_order"] }
serde_repr = "0.1.20"
serde_with = "3.19.0"
sha2 = "0.11.0"
smallvec = "1.15.1"
stdext = { path = "crates/stdext" }
streaming-iterator = "0.1.9"
strum = "0.28.0"
strum_macros = "0.28.0"
syn = { version = "2.0.117", features = ["full"] }
tar = "0.4.45"
tempfile = "3.27.0"
tokio = { version = "1.52.1", features = ["full"] }
# For https://github.com/ebkalderon/tower-lsp/pull/428
tower-lsp = { branch = "bugfix/patches", git = "https://github.com/lionel-/tower-lsp" }
tracing = "0.1.44"
tracing-appender = "0.2.5"
tracing-error = "0.2.1"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
tree-sitter = "0.24.7"
tree-sitter-r = { git = "https://github.com/r-lib/tree-sitter-r", rev = "95aff097aa927a66bb357f715b58cde821be8867" }
ureq = "3.3.0"
url = "2.5.8"
uuid = { version = "1.23.1", features = ["v4"] }
walkdir = "2"
windows-sys ="0.61.2"
winsafe = { version = "0.0.27", features = ["kernel"] }
xdg = "3.0.0"
yaml-rust2 = "0.11"
# We need ZMQ 4.3.5 to fix polling issues on Windows arm64
zmq = { git = "https://github.com/erickt/rust-zmq", rev = "5d78967" }