tabby/Cargo.toml
Meng Zhang 4a26fc1f4a Release 0.21.0-dev.0
aim-downloader@0.21.0-dev.0
hash-ids@0.21.0-dev.0
http-api-bindings@0.21.0-dev.0
llama-cpp-server@0.21.0-dev.0
ollama-api-bindings@0.21.0-dev.0
tabby@0.21.0-dev.0
tabby-common@0.21.0-dev.0
tabby-crawler@0.21.0-dev.0
tabby-db@0.21.0-dev.0
tabby-db-macros@0.21.0-dev.0
tabby-download@0.21.0-dev.0
tabby-git@0.21.0-dev.0
tabby-index@0.21.0-dev.0
tabby-index-cli@0.21.0-dev.0
tabby-inference@0.21.0-dev.0
tabby-schema@0.21.0-dev.0
tabby-webserver@0.21.0-dev.0

Generated by cargo-workspaces
2024-11-09 21:46:51 -08:00

84 lines
1.9 KiB
TOML

[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