Skip to content

Commit

Permalink
chore(swiftide): loosen up dependencies (#140)
Browse files Browse the repository at this point in the history
Loosen up dependencies so swiftide is a bit more flexible to add to
existing projects
  • Loading branch information
timonv authored Jul 12, 2024
1 parent 5691ac9 commit 364e13d
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions swiftide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,51 +10,51 @@ categories = ["asynchronous"]
repository = "https://github.com/bosun-ai/swiftide-rs"

[dependencies]
anyhow = { version = "1.0.86", features = ["backtrace"] }
async-stream = "0.3.5"
async-trait = "0.1.80"
chrono = { version = "0.4.38" }
derive_builder = "0.20.0"
futures-util = "0.3.30"
ignore = "0.4.22"
indoc = "2.0.5"
itertools = { version = "0.13.0" }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
text-splitter = { version = "0.14.0", features = ["markdown"] }
tokio = { version = "1.38.0", features = ["full"] }
tokio-stream = "0.1.15"
tracing = { version = "0.1.40", features = ["log"] }
strum = "0.26.2"
strum_macros = "0.26.4"
num_cpus = "1.16.0"
anyhow = { version = "1.0", features = ["backtrace"] }
async-stream = "0.3"
async-trait = "0.1"
chrono = { version = "0.4" }
derive_builder = "0.20"
futures-util = "0.3"
ignore = "0.4"
indoc = "2.0"
itertools = { version = "0.13" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
text-splitter = { version = "0.14", features = ["markdown"] }
tokio = { version = "1.38", features = ["full"] }
tokio-stream = "0.1"
tracing = { version = "0.1", features = ["log"] }
strum = "0.26"
strum_macros = "0.26"
num_cpus = "1.16"
pin-project-lite = "0.2"

# Integrations
async-openai = { version = "0.23.2", optional = true }
qdrant-client = { version = "1.9.0", optional = true }
redis = { version = "0.25.4", features = [
async-openai = { version = "0.23", optional = true }
qdrant-client = { version = "1.9", optional = true }
redis = { version = "0.25", features = [
"aio",
"tokio-comp",
"connection-manager",
"tokio-rustls-comp",
], optional = true }
tree-sitter = { version = "0.22.5", optional = true }
tree-sitter-rust = { version = "0.21.0", optional = true }
tree-sitter-python = { version = "0.21.0", optional = true }
tree-sitter-ruby = { version = "0.21.0", optional = true }
tree-sitter-typescript = { version = "0.21.1", optional = true }
tree-sitter-javascript = { version = "0.21.3", optional = true }
fastembed = { version = "3.6.1", optional = true }
tree-sitter = { version = "0.22", optional = true }
tree-sitter-rust = { version = "0.21", optional = true }
tree-sitter-python = { version = "0.21", optional = true }
tree-sitter-ruby = { version = "0.21", optional = true }
tree-sitter-typescript = { version = "0.21", optional = true }
tree-sitter-javascript = { version = "0.21", optional = true }
fastembed = { version = "3.6", optional = true }
spider = { version = "1.98", optional = true }
htmd = { version = "0.1.3", optional = true }
aws-config = { version = "1.5.3", features = [
htmd = { version = "0.1", optional = true }
aws-config = { version = "1.5", features = [
"behavior-version-latest",
], optional = true }
aws-credential-types = { version = "1.2.0", features = [
aws-credential-types = { version = "1.2", features = [
"hardcoded-credentials",
], optional = true }
aws-sdk-bedrockruntime = { version = "1.37.0", features = [
aws-sdk-bedrockruntime = { version = "1.37", features = [
"behavior-version-latest",
], optional = true }

Expand Down

0 comments on commit 364e13d

Please sign in to comment.