-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
66 lines (51 loc) · 1.6 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
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "b3_server"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
actix-cors = "0.6.4"
#tokio = { version = "1.34.0", features = ["macros", "process", "rt", "rt-multi-thread", "io-std", "io-util", "sync", "fs"] }
uuid = "1.6.1"
# core
flume = "0.11.0"
ignore = "=0.4.20"
anyhow = "1.0.75"
# misc
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.108"
# embed
enfer_core = "0.1.2"
# code-nav
tree-sitter = "0.20.10"
tree-sitter-javascript = "0.20.1"
tree-sitter-python = "=0.20.2"
tree-sitter-rust = "0.20.4"
tree-sitter-typescript = "0.20.2"
tree-sitter-java = { git = "https://github.com/tree-sitter/tree-sitter-java", tag = "v0.20.0" }
# the documentation splitter
tree-sitter-md = "0.1.7"
# chunks spliting
unicode-segmentation = "1.10.1"
# doc scraper
select = "0.6"
url = "2.5.0"
reqwest = { version = "0.11.20", features = ["rustls-tls-webpki-roots", "cookies", "gzip"], default-features = false }
reqwest-eventsource = "0.5.0"
# document splitter
docx-rs = "0.4.7"
# storage
#sqlx = { version = "0.7.3", features = ["sqlite", "migrate", "runtime-tokio-rustls", "chrono", "uuid"] }
# search engine Tantivy?
tantivy = { version = "0.22.0", features = ["mmap"] }
# Chinese support
tantivy-jieba = "0.10.0"
tantivy-columnar = "0.3.0"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "registry"] }
tracing-appender = "0.2.2"
# watch dir
notify-debouncer-mini = { version = "0.4.1", default-features = false }
#misc
directories = "5.0.1"