-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (60 loc) · 1.71 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (60 loc) · 1.71 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
[package]
name = "quickcode"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
axum = { version = "0.7", features = ["ws"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sqlx = { version = "0.7", features = ["sqlite", "runtime-tokio", "macros", "migrate"] }
thiserror = "1"
anyhow = "1"
clap = { version = "4", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
tokio-stream = { version = "0.1", features = ["sync"] }
futures = "0.3"
uuid = { version = "1", features = ["v4"] }
ulid = "1"
sha2 = "0.10"
hex = "0.4"
chrono = { version = "0.4", features = ["serde"] }
dirs = "5"
reqwest = { version = "0.11", features = ["json", "stream", "rustls-tls"], default-features = false }
async-trait = "0.1"
ratatui = "0.26"
crossterm = "0.27"
regex = "1"
glob = "0.3"
ignore = "0.4"
dotenvy = "0.15"
jsonc-parser = { version = "0.23", features = ["serde"] }
wildmatch = "2"
base64 = "0.21"
mime_guess = "2"
portable-pty = "0.8"
bytes = "1"
axum-extra = { version = "0.9", features = ["typed-header"] }
headers = "0.4"
http = "1"
eventsource-stream = "0.2"
pin-project = "1"
dashmap = "5"
once_cell = "1"
syntect = { version = "5", default-features = false, features = ["default-syntaxes", "default-themes", "parsing", "regex-fancy"] }
tokio-util = { version = "0.7" }
urlencoding = "2"
lsp-types = "0.95"
pulldown-cmark = "0.10"
hmac = "0.12"
async-stream = "0.3"
url = "2"
notify = "6"
fuzzy-matcher = "0.3"
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }
tempfile = "3"
tower = { version = "0.4", features = ["util"] }