2023-06-05 03:08:43 +00:00
|
|
|
[package]
|
|
|
|
|
name = "tabby-scheduler"
|
2023-10-14 00:54:14 +00:00
|
|
|
version = "0.4.0-dev"
|
2023-06-05 03:08:43 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-05 22:18:10 +00:00
|
|
|
anyhow = { workspace = true }
|
2023-06-05 03:08:43 +00:00
|
|
|
filenamify = "0.1.0"
|
2023-06-05 18:29:38 +00:00
|
|
|
job_scheduler = "1.2.1"
|
2023-06-05 03:08:43 +00:00
|
|
|
tabby-common = { path = "../tabby-common" }
|
2023-07-13 09:05:41 +00:00
|
|
|
tantivy = { workspace = true }
|
2023-06-05 18:29:38 +00:00
|
|
|
tracing = { workspace = true }
|
2023-06-22 02:48:13 +00:00
|
|
|
tree-sitter-tags = "0.20.2"
|
2023-06-05 22:18:10 +00:00
|
|
|
walkdir = "2.3.3"
|
2023-06-12 15:19:43 +00:00
|
|
|
lazy_static = { workspace = true }
|
|
|
|
|
serde = { workspace = true }
|
2023-06-22 02:48:13 +00:00
|
|
|
serde-jsonlines = { workspace = true }
|
2023-06-12 15:19:43 +00:00
|
|
|
file-rotate = "0.7.5"
|
2023-06-22 20:25:56 +00:00
|
|
|
tree-sitter-python = "0.20.2"
|
2023-07-13 09:31:44 +00:00
|
|
|
tree-sitter-rust = "0.20.3"
|
2023-10-12 00:42:58 +00:00
|
|
|
tree-sitter-typescript = "0.20.3"
|
2023-06-05 03:08:43 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
temp_testdir = "0.2"
|
|
|
|
|
tabby-common = { path = "../tabby-common", features = [ "testutils" ] }
|
2023-06-05 22:18:10 +00:00
|
|
|
tracing-test = "0.1"
|
2023-09-03 05:04:52 +00:00
|
|
|
tokio = { workspace = true, features = ["rt"] }
|
2023-10-04 23:27:19 +00:00
|
|
|
serde_json = { workspace = true }
|