Publish harness and TUI open-source
initial sync from the monorepo
This commit is contained in:
commit
c68e39f604
2734 changed files with 1437016 additions and 0 deletions
32
crates/codegen/xai-fsnotify/Cargo.toml
Normal file
32
crates/codegen/xai-fsnotify/Cargo.toml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
[package]
|
||||
license = "Apache-2.0"
|
||||
name = "xai-fsnotify"
|
||||
version = "0.1.0"
|
||||
edition.workspace = true
|
||||
description = "Local-filesystem event source: single causal stream of semantic FsEvents"
|
||||
|
||||
[dependencies]
|
||||
dunce = { workspace = true }
|
||||
notify = "8"
|
||||
notify-debouncer-full = "0.5"
|
||||
ignore = { workspace = true }
|
||||
globset = "0.4"
|
||||
tokio = { workspace = true, features = ["sync", "time", "rt"] }
|
||||
tokio-util = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
git2 = { version = "0.20", default-features = false, features = ["vendored-libgit2"] }
|
||||
thiserror = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = { workspace = true }
|
||||
serial_test = "3"
|
||||
criterion = { workspace = true }
|
||||
xai-tracing-macros = { path = "../xai-tracing-macros" }
|
||||
|
||||
[[bench]]
|
||||
name = "startup"
|
||||
harness = false
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
Loading…
Reference in a new issue