-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
121 lines (116 loc) · 4 KB
/
Cargo.toml
File metadata and controls
121 lines (116 loc) · 4 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
[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 = "4cbd36d552e27d8930cff1602d56bfd9ce4c1ed1" }
aether_lsp_utils = { git = "https://github.com/posit-dev/air", rev = "4cbd36d552e27d8930cff1602d56bfd9ce4c1ed1" }
aether_parser = { git = "https://github.com/posit-dev/air", package = "air_r_parser", rev = "4cbd36d552e27d8930cff1602d56bfd9ce4c1ed1" }
aether_syntax = { git = "https://github.com/posit-dev/air", package = "air_r_syntax", rev = "4cbd36d552e27d8930cff1602d56bfd9ce4c1ed1" }
amalthea = { path = "crates/amalthea" }
anyhow = "1.0.102"
ark = { path = "crates/ark" }
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 = "41d799cfa4cedd25625fc3f6bd7898532873f051" }
biome_rowan = { git = "https://github.com/lionel-/biome", rev = "41d799cfa4cedd25625fc3f6bd7898532873f051" }
blake3 = "1.8.4"
bus = "2.4.1"
cc = "1.2.60"
cfg-if = "1.0.4"
chrono = "0.4.44"
crossbeam = { version = "0.8.4", features = ["crossbeam-channel"] }
ctor = "0.1.26"
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.8"
env_logger = "0.11.10"
etcetera = "0.11.0"
flate2 = "1.1.9"
futures = "0.3.32"
harp = { path = "crates/harp" }
harp-macros = { path = "crates/harp/harp-macros" }
hex = "0.4.3"
hmac = "0.13.0"
home = "0.5.12"
insta = "1.47.2"
itertools = "0.14.0"
libc = "0.2.185"
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_fs = { path = "crates/oak_fs" }
oak_ide = { path = "crates/oak_ide" }
oak_index = { path = "crates/oak_index" }
oak_package = { path = "crates/oak_package" }
oak_r_process = { path = "crates/oak_r_process" }
oak_sources = { path = "crates/oak_sources" }
once_cell = "1.21.4"
parking_lot = "0.12.5"
paste = "1.0.15"
quote = "1.0.45"
rand = "0.10"
regex = "1.12.3"
reqwest = { version = "0.13.2", 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"
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.18.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.9"
zmq = "0.10.0"