28 lines
722 B
TOML
28 lines
722 B
TOML
[package]
|
|
name = "tabby-scheduler"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
filenamify = "0.1.0"
|
|
job_scheduler = "1.2.1"
|
|
tabby-common = { path = "../tabby-common" }
|
|
tantivy = "0.19.2"
|
|
tracing = { workspace = true }
|
|
tree-sitter-javascript = "0.20.0"
|
|
tree-sitter-tags = "0.20.2"
|
|
walkdir = "2.3.3"
|
|
lazy_static = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde-jsonlines = { workspace = true }
|
|
file-rotate = "0.7.5"
|
|
tree-sitter-python = "0.20.2"
|
|
|
|
[dev-dependencies]
|
|
temp_testdir = "0.2"
|
|
tabby-common = { path = "../tabby-common", features = [ "testutils" ] }
|
|
tracing-test = "0.1"
|