Skip to content

Commit

Permalink
Working basic trie
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Soltis authored and Greg Soltis committed Mar 29, 2024
1 parent b0928cc commit 6ee5a57
Show file tree
Hide file tree
Showing 5 changed files with 287 additions and 82 deletions.
29 changes: 28 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions crates/turborepo-filewatch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ anyhow = { workspace = true }
dashmap = { workspace = true }
futures = { version = "0.3.26" }
itertools = { workspace = true }
nibble_vec = "0.1.0"
notify = { workspace = true }
radix_trie = "0.2.1"
thiserror = "1.0.38"
tokio = { workspace = true, features = ["full", "time"] }
tracing = "0.1.37"
Expand Down
2 changes: 1 addition & 1 deletion crates/turborepo-filewatch/src/globwatcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ impl GlobSet {
Ok(Self {
include,
exclude,
exclude_raw: BTreeSet::from_iter(raw_excludes.into_iter()),
exclude_raw: BTreeSet::from_iter(raw_excludes),
})
}
}
Expand Down
Loading

0 comments on commit 6ee5a57

Please sign in to comment.