forked from TabbyML/tabby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
83 lines (77 loc) · 1.88 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[workspace]
resolver = "1"
members = [
"crates/tabby",
"crates/tabby-common",
"crates/tabby-download",
"crates/tabby-git",
"crates/tabby-inference",
"crates/tabby-index",
"crates/tabby-crawler",
"crates/aim-downloader",
"crates/http-api-bindings",
"crates/llama-cpp-server",
"crates/ollama-api-bindings",
"crates/tabby-index-cli",
"ee/tabby-webserver",
"ee/tabby-db",
"ee/tabby-db-macros",
"ee/tabby-schema",
"crates/hash-ids",
]
[workspace.package]
version = "0.21.0-dev.0"
edition = "2021"
authors = ["TabbyML Team"]
homepage = "https://github.com/TabbyML/tabby"
[workspace.dependencies]
cached = "0.49.3"
lazy_static = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
serdeconv = "0.4.1"
tokio = "1.28"
tracing = "0.1"
tokio-cron-scheduler = "0.9.4"
tracing-subscriber = "0.3"
anyhow = "1.0.71"
tantivy = { git = "https://github.com/quickwit-oss/tantivy", rev = "4143d31" }
async-trait = "0.1.72"
reqwest = { version = "0.12" }
derive_builder = "0.20"
futures = "0.3.30"
async-stream = "0.3.5"
regex = "1.10.0"
strum = { version = "0.24", features = ["derive"] }
thiserror = "1.0.49"
utoipa = "4.2"
axum = "0.7"
axum-extra = "0.9"
hyper = "1.1"
juniper = "0.16"
chrono = "0.4"
reqwest-eventsource = "0.6"
serial_test = "3.0.0"
hash-ids = { path = "./crates/hash-ids" }
ignore = "0.4.20"
nucleo = "0.5.0"
url = "2.5.0"
temp_testdir = "0.2"
git2 = "0.18.3"
tower-http = "0.5"
mime_guess = "2.0.4"
assert_matches = "1.5"
insta = "1.34.0"
logkit = "0.3"
async-openai = "0.20"
tracing-test = "0.2"
clap = "4.3.0"
[workspace.dependencies.uuid]
version = "1.3.3"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]
[profile.dev.package]
insta.opt-level = 3