-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
108 lines (100 loc) · 3.1 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[workspace]
members = ["swiftide", "swiftide-*", "examples", "benchmarks"]
default-members = ["swiftide", "swiftide-*"]
resolver = "2"
[workspace.package]
version = "0.14.2"
edition = "2021"
license = "MIT"
readme = "README.md"
keywords = ["llm", "rag", "ai", "data", "openai"]
description = "Blazing fast, streaming pipeline library for AI applications"
categories = ["asynchronous"]
repository = "https://github.com/bosun-ai/swiftide-rs"
homepage = "https://swiftide.rs"
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3
[workspace.dependencies]
anyhow = { version = "1.0" }
async-trait = { version = "0.1" }
derive_builder = { version = "0.20" }
futures-util = { version = "0.3" }
tokio = { version = "1.41", features = ["rt-multi-thread"] }
tokio-stream = { version = "0.1" }
tracing = { version = "0.1", features = ["log"] }
num_cpus = { version = "1.16" }
pin-project = { version = "1.1" }
itertools = { version = "0.13" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
strum = { version = "0.26" }
strum_macros = { version = "0.26" }
lazy_static = { version = "1.5.0" }
chrono = { version = "0.4" }
indoc = { version = "2.0" }
regex = { version = "1.11.1" }
uuid = { version = "1.10", features = ["v3", "v4", "serde"] }
dyn-clone = { version = "1.0" }
# Integrations
spider = { version = "2.13" }
async-openai = { version = "0.25" }
qdrant-client = { version = "1.10", default-features = false, features = [
"serde",
] }
fluvio = { version = "0.23", default-features = false }
lancedb = { version = "0.11", default-features = false }
arrow-array = { version = "52.0", default-features = false }
arrow = { version = "52.2" }
parquet = { version = "52.2", default-features = false, features = ["async"] }
redb = { version = "2.2" }
aws-config = "1.5"
aws-credential-types = "1.2"
aws-sdk-bedrockruntime = "1.61"
criterion = { version = "0.5.1", default-features = false }
darling = "0.20"
deadpool = "0.12"
document-features = "0.2.10"
fastembed = "4.0"
flv-util = "0.5.2"
htmd = "0.1"
ignore = "0.4"
ollama-rs = "0.2.1"
proc-macro2 = "1.0"
quote = "1.0"
redis = "0.27"
reqwest = { version = "0.12.9", default-features = false }
secrecy = "0.8.0"
syn = "2.0"
tera = { version = "1.20", default-features = false }
text-splitter = "0.17"
tracing-subscriber = "0.3"
tree-sitter = "0.23"
tree-sitter-java = "0.23"
tree-sitter-javascript = "0.23"
tree-sitter-python = "0.23"
tree-sitter-ruby = "0.23"
tree-sitter-rust = "0.23"
tree-sitter-typescript = "0.23"
# Testing
test-log = "0.2.16"
testcontainers = { version = "0.23.0", features = ["http_wait"] }
mockall = "0.13.0"
temp-dir = "0.1.13"
wiremock = "0.6.0"
test-case = "3.3.1"
insta = { version = "1.41.1", features = ["yaml"] }
[workspace.lints.rust]
unsafe_code = "forbid"
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(coverage,coverage_nightly)',
] }
[workspace.lints.clippy]
cargo = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
blocks_in_conditions = "allow"
must_use_candidate = "allow"
module_name_repetitions = "allow"
missing_fields_in_debug = "allow"
# Should be fixed asap
multiple_crate_versions = "allow"