21 lines
505 B
TOML
21 lines
505 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 }
|
|
walkdir = "2.3.3"
|
|
|
|
[dev-dependencies]
|
|
temp_testdir = "0.2"
|
|
tabby-common = { path = "../tabby-common", features = [ "testutils" ] }
|
|
tracing-test = "0.1"
|