-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
54 lines (52 loc) · 1.69 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
[package]
name = "copilot-rs"
version = "0.19.0"
edition = "2021"
rust-version = "1.73.0"
readme = "README.md"
keywords = ["language-server", "lsp", "tower"]
[profile.dev]
# Disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
debug = 2
[profile.release]
incremental = true
# Set this to 1 or 2 to get more useful backtraces in debugger.
debug = 0
[dependencies]
async-codec-lite = { version = "0.0", optional = true }
async-trait = "0.1"
async-weighted-semaphore = "0.2.1"
auto_impl = "1.0"
bytes = "1.0"
dashmap = "5.1"
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
httparse = "1.8"
lsp-types = "0.94"
memchr = "2.5"
# tokio = { version = "1.17", features = ["full"] }
# tokio-util = { version = "0.7", optional = true, features = ["codec", "compat"] }
tower = { version = "0.4", default-features = false, features = ["util"] }
tracing = "0.1"
async-tungstenite = { version = "0.18", features = ["tokio-runtime"] }
# tracing-subscriber = "0.3"
ws_stream_tungstenite = { version = "0.9", features = ["tokio_io"] }
eventsource-stream = "0.2.3"
reqwest-eventsource = "0.4.0"
github-device-flow = "0.1.4"
ropey = "1.6.0"
serde = {version = "1.0.171", features = ["derive"]}
serde_derive = "1.0.171"
serde_json = "1.0.102"
reqwest = "0.11.18"
tokio = { version = "1.29.1", features = ["full"] }
tokio-util = { version = "0.7.8", features = ["full"] }
tracing-subscriber = "0.3.17"
futures-util = "0.3.28"
chrono = "0.4.26"
uuid = {version = "1.3.4", features = ["v4", "fast-rng", "macro-diagnostics"]}
interfaces = "0.0.9"
sha256 = "1.3.0"
cancellation = "0.1.0"
async-std = {version="1.12.0", features=["unstable"]}
tower-lsp = "0.20.0"