1b279d4d10
Lua CI / lua-language-server type check (push) Failing after 1s
Lua CI / luacheck lint (push) Failing after 1s
Python CI / Python bindings (ubuntu-latest) (push) Failing after 1s
Build & Publish / Build Neovim aarch64-linux-android (push) Failing after 3s
Build & Publish / Build Neovim aarch64-unknown-linux-gnu (push) Failing after 0s
Build & Publish / Build Neovim aarch64-unknown-linux-musl (push) Failing after 1s
Build & Publish / Build Neovim x86_64-unknown-linux-gnu (push) Failing after 1s
Build & Publish / Build Neovim x86_64-unknown-linux-musl (push) Failing after 1s
Build & Publish / Build C FFI aarch64-linux-android (push) Failing after 1s
Build & Publish / Build C FFI aarch64-unknown-linux-gnu (push) Failing after 1s
Build & Publish / Build C FFI aarch64-unknown-linux-musl (push) Failing after 0s
Build & Publish / Build C FFI x86_64-unknown-linux-gnu (push) Failing after 1s
Build & Publish / Build C FFI x86_64-unknown-linux-musl (push) Failing after 3s
Build & Publish / Build MCP aarch64-unknown-linux-gnu (push) Failing after 1s
Build & Publish / Build MCP aarch64-unknown-linux-musl (push) Failing after 0s
Build & Publish / Build MCP x86_64-unknown-linux-gnu (push) Failing after 2s
Rust CI / Fuzz Tests (ubuntu-latest) (push) Failing after 1s
Rust CI / Build i686-unknown-linux-gnu (push) Failing after 1s
Rust CI / cargo fmt (push) Failing after 1s
Build & Publish / Build MCP x86_64-unknown-linux-musl (push) Failing after 4s
Build & Publish / Build Python wheels aarch64 (ubuntu-latest) (push) Failing after 1s
Build & Publish / Build Python wheels x86_64 (ubuntu-latest) (push) Failing after 1s
Build & Publish / Build Python sdist (push) Failing after 0s
Rust CI / Test (ubuntu-latest) (push) Failing after 1s
Rust CI / cargo clippy (push) Failing after 1s
Spelling / Spell Check with Typos (push) Failing after 1s
Stylua / Check lua files using Stylua (push) Failing after 1s
e2e Tests / e2e (ubuntu-latest) (push) Failing after 4s
e2e Tests / e2e (alpine-musl) (push) Successful in 58m54s
Build & Publish / Build C FFI aarch64-apple-darwin (push) Has been cancelled
Build & Publish / Build C FFI aarch64-pc-windows-msvc (push) Has been cancelled
Build & Publish / Build C FFI x86_64-apple-darwin (push) Has been cancelled
Build & Publish / Build C FFI x86_64-pc-windows-msvc (push) Has been cancelled
e2e Tests / e2e (macos-latest) (push) Has been cancelled
e2e Tests / e2e (windows-latest) (push) Has been cancelled
Nix CI / check (push) Has been cancelled
Python CI / Python bindings (macos-latest) (push) Has been cancelled
Python CI / Python bindings (windows-latest) (push) Has been cancelled
Build & Publish / Build Neovim aarch64-apple-darwin (push) Has been cancelled
Build & Publish / Build Neovim aarch64-pc-windows-msvc (push) Has been cancelled
Build & Publish / Build Neovim x86_64-apple-darwin (push) Has been cancelled
Build & Publish / Build Neovim x86_64-pc-windows-msvc (push) Has been cancelled
Build & Publish / Build MCP aarch64-apple-darwin (push) Has been cancelled
Build & Publish / Build MCP aarch64-pc-windows-msvc (push) Has been cancelled
Build & Publish / Build MCP x86_64-apple-darwin (push) Has been cancelled
Build & Publish / Build MCP x86_64-pc-windows-msvc (push) Has been cancelled
Build & Publish / Build Python wheels aarch64 (macos-latest) (push) Has been cancelled
Build & Publish / Build Python wheels x86_64 (macos-latest) (push) Has been cancelled
Build & Publish / Build Python wheels x86_64 (windows-latest) (push) Has been cancelled
Build & Publish / Release (push) Has been cancelled
Build & Publish / Publish Python wheels to PyPI (push) Has been cancelled
Build & Publish / Publish Rust crates (push) Has been cancelled
Build & Publish / Publish npm packages (push) Has been cancelled
Rust CI / Test (macos-latest) (push) Has been cancelled
Rust CI / Test (windows-latest) (push) Has been cancelled
Rust CI / Fuzz Tests (macos-latest) (push) Has been cancelled
Rust CI / Fuzz Tests (windows-latest) (push) Has been cancelled
96 lines
3.2 KiB
TOML
96 lines
3.2 KiB
TOML
[package]
|
|
name = "fff-search"
|
|
version = "0.9.6"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
authors = ["Dmitriy Kovalenko <dmtr.kovalenko@outlook.com>"]
|
|
description = "Faboulous & Fast File Finder - a fast and extremely correct file finder SDK with typo resistance, SIMD, prefiltering, and more"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
crate-type = ["rlib", "staticlib", "cdylib"]
|
|
|
|
[[bench]]
|
|
name = "parse_bench"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "bigram_bench"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "memmem_bench"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "glob_bench"
|
|
harness = false
|
|
required-features = ["zlob"]
|
|
|
|
[features]
|
|
# `ripgrep` is the pure-Rust walker/glob backend and is on by default so
|
|
# consumers build without a Zig toolchain. CI/release opt into zlob via
|
|
# `--no-default-features --features zlob`.
|
|
default = ["ripgrep"]
|
|
# Enable C FFI exports
|
|
ffi = []
|
|
# Enables POC definition classification for grep result matched lines
|
|
definitions = []
|
|
# Pure-Rust filesystem walker + glob matcher (ignore + globset crates).
|
|
ripgrep = ["dep:ignore", "dep:globset", "fff-query-parser/ripgrep"]
|
|
# Call mi_collect(true) after large allocator churn (bigram build).
|
|
# Requires mimalloc to be the global allocator (linked by fff-nvim).
|
|
mimalloc-collect = ["dep:libmimalloc-sys"]
|
|
# Use zlob (Zig-compiled C globbing library) for glob matching.
|
|
# Requires Zig to be installed. When disabled, falls back to globset (pure Rust).
|
|
zlob = ["dep:zlob", "fff-query-parser/zlob"]
|
|
|
|
[dependencies]
|
|
ahash = { workspace = true }
|
|
rayon = { workspace = true }
|
|
smallvec = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
fff-query-parser = { workspace = true , version = "0.9.0" }
|
|
blake3 = { workspace = true }
|
|
dirs = { workspace = true }
|
|
libc = "0.2"
|
|
git2 = { workspace = true }
|
|
glidesort = { workspace = true }
|
|
globset = { workspace = true, optional = true }
|
|
fff-grep = { workspace = true , version = "0.9.0" }
|
|
aho-corasick = "1"
|
|
memchr = "2"
|
|
heed = { workspace = true }
|
|
ignore = { workspace = true, optional = true }
|
|
memmap2 = { workspace = true }
|
|
neo_frizbee = { workspace = true }
|
|
notify = { workspace = true }
|
|
notify-debouncer-full = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
pathdiff = { workspace = true }
|
|
regex = { workspace = true }
|
|
regex-syntax = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tracing-appender = "0.2"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
zlob = { workspace = true, optional = true }
|
|
libmimalloc-sys = { version = "0.1", optional = true, features = ["extended", "local_dynamic_tls"] }
|
|
mimalloc = { version = "0.1", optional = true, features = ["local_dynamic_tls"] }
|
|
# Platform-specific: dunce for Windows to avoid \\?\ extended path prefix
|
|
[target.'cfg(windows)'.dependencies]
|
|
dunce = { workspace = true }
|
|
|
|
# signal-hook only compiles on unix; we wrap the SIGSEGV handler behind cfg(unix)
|
|
[target.'cfg(unix)'.dependencies]
|
|
signal-hook-registry = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
ctor = "0.2"
|
|
proptest = { version = "1", default-features = false, features = ["std", "fork"] }
|
|
rand = { version = "0.8", features = ["small_rng"] }
|
|
tempfile = "3.8"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|