forked from tensorlakeai/indexify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (52 loc) · 1.75 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
[package]
name = "indexify"
version = "0.1.0"
edition = "2021"
build = "build.rs"
[workspace]
members = [".", "migration"]
[dependencies]
anyhow = {version="^1"}
async-openai = "*"
async-trait = "*"
axum = {version="^0"}
axum-macros = {version = "0.3.7"}
clap = {version="^4", features=["derive"]}
figment = {version="0.10.8", features=["yaml", "env"]}
oneshot = {version="^0"}
qdrant-client = "1.2.0"
regex = {version="^1"}
sea-orm = { version = "^0", features = ["sqlx-postgres", "runtime-tokio-native-tls", "macros", "sqlx-dep", "debug-print", "with-json", "with-time"] }
sea-query = {version = "^0"}
serde = {version="^1", features=["derive"]}
serde_yaml={version="^0"}
serde_json={version="^1", features=["std"]}
smart-default = {version = "^0"}
strum = { version = "^0", features = ["derive"] }
strum_macros = {version = "^0"}
thiserror = "*"
tokio = { version = "^1", features = ["full"] }
tracing = {version="^0", features = ["log"]}
tracing-subscriber = {version="^0"}
md-5 = {version = "^0"}
tiktoken-rs = {version = "^0"}
dashmap = "5.4.0"
indexmap = {version = "^2"}
rand = {version="^0"}
time = { version = "0.3", features = ["macros"] }
pyo3 = {version="^0", features=["auto-initialize"]}
utoipa = {version="^3", features=["axum_extras"]}
utoipa-swagger-ui = {version="^3", features = ["axum"] }
utoipa-redoc = {version= "^0", features = ["axum"]}
utoipa-rapidoc = {version="^0", features = ["axum"]}
nanoid = {version="0.4.0"}
reqwest = {version="^0"}
hostname = {version="^0"}
pythonize = "0.19.0"
unescape = "0.1.0"
[dev-dependencies]
migration = {path ="./migration"}
tracing-test = {version = "^0", features = ["no-env-filter"]}
[build-dependencies]
# All features enabled
vergen = { version = "8.0.0", features = ["build", "cargo", "git", "gitcl", "rustc", "si"] }